diff --git a/lib/commands.py b/lib/commands.py index eaf319e0..83312c2d 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -556,7 +556,7 @@ class Commands: f = PR_PAID else: f = None - if f: + if f is not None: out = filter(lambda x: x.get('status')==f, out) return map(self._format_request, out)