diff options
author | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2016-02-03 20:34:42 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2016-02-03 20:34:42 +0100 |
commit | 522cfd1e218ac568c7763b6c3ea2b84e3aeddfd6 (patch) | |
tree | 207fee0551dda803cd3eb5bc06f77ccb094a3069 /gitlab/cli.py | |
parent | 9ae26fe859e11bdc86f8662b6cca34522946dadf (diff) | |
download | gitlab-522cfd1e218ac568c7763b6c3ea2b84e3aeddfd6.tar.gz |
CLI: fix {all,owned,search} project listing
Diffstat (limited to 'gitlab/cli.py')
-rw-r--r-- | gitlab/cli.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gitlab/cli.py b/gitlab/cli.py index 838bf07..cf1c6c0 100644 --- a/gitlab/cli.py +++ b/gitlab/cli.py @@ -337,6 +337,7 @@ def main(): for o in l: o.display(verbose) + print("") elif action == OWNED: if cls != gitlab.Project: @@ -344,6 +345,7 @@ def main(): for o in do_project_owned(gl, what, args): o.display(verbose) + print("") elif action == ALL: if cls != gitlab.Project: @@ -351,5 +353,6 @@ def main(): for o in do_project_all(gl, what, args): o.display(verbose) + print("") sys.exit(0) |