summaryrefslogtreecommitdiff
path: root/gitlab/cli.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain.pocentek@objectif-libre.com>2016-02-03 20:34:42 +0100
committerGauvain Pocentek <gauvain.pocentek@objectif-libre.com>2016-02-03 20:34:42 +0100
commit522cfd1e218ac568c7763b6c3ea2b84e3aeddfd6 (patch)
tree207fee0551dda803cd3eb5bc06f77ccb094a3069 /gitlab/cli.py
parent9ae26fe859e11bdc86f8662b6cca34522946dadf (diff)
downloadgitlab-522cfd1e218ac568c7763b6c3ea2b84e3aeddfd6.tar.gz
CLI: fix {all,owned,search} project listing
Diffstat (limited to 'gitlab/cli.py')
-rw-r--r--gitlab/cli.py3
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)