Browse Source

fix --pending option

283
ThomasV 9 years ago
parent
commit
d75d3fdf5b
  1. 2
      lib/commands.py

2
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)

Loading…
Cancel
Save