diff --git a/burpui/routes.py b/burpui/routes.py index 9511ccff59c00ffb3cb7baa96bcab08c727b39d4..f2275d6a6cf20f9c2298e14126a0d549dccf513c 100644 --- a/burpui/routes.py +++ b/burpui/routes.py @@ -281,7 +281,7 @@ def live_monitor(server=None, name=None): flash(_('Sorry, there are no running backups'), 'warning') return redirect(url_for('.home')) else: - if not any([x for _, x in iteritems(running)]): + if not any([x for y, x in iteritems(running)]): flash(_('Sorry, there are no running backups'), 'warning') return redirect(url_for('.home'))