commit 889874177f9bc30b87438b90f8453bad7e1ffc80 Author: Pierre-Yves Chibon pingou@pingoured.fr Date: Thu Jul 3 16:01:38 2014 +0200
Fix the _get_active_branches to actually get the active branches...
pkgdb2_cli.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- diff --git a/pkgdb2_cli.py b/pkgdb2_cli.py index 7036ac9..3c6a9fe 100644 --- a/pkgdb2_cli.py +++ b/pkgdb2_cli.py @@ -74,7 +74,7 @@ def _get_active_branch(packagename=None): branches.append(pkg['collection']['branchname']) else: output = pkgdbclient.get_collections( - clt_status=['EOL', 'Under Development']) + clt_status=['Active', 'Under Development']) for collect in output['collections']: if collect['status'] == 'EOL': continue
packagedb-cli-commits@lists.stg.fedorahosted.org