Skip to content

Commit 522cfd1

Browse files
author
Gauvain Pocentek
committed
CLI: fix {all,owned,search} project listing
1 parent 9ae26fe commit 522cfd1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

gitlab/cli.py

+3
Original file line numberDiff line numberDiff line change
@@ -337,19 +337,22 @@ def main():
337337

338338
for o in l:
339339
o.display(verbose)
340+
print("")
340341

341342
elif action == OWNED:
342343
if cls != gitlab.Project:
343344
_die("%s objects don't support this request" % what)
344345

345346
for o in do_project_owned(gl, what, args):
346347
o.display(verbose)
348+
print("")
347349

348350
elif action == ALL:
349351
if cls != gitlab.Project:
350352
_die("%s objects don't support this request" % what)
351353

352354
for o in do_project_all(gl, what, args):
353355
o.display(verbose)
356+
print("")
354357

355358
sys.exit(0)

0 commit comments

Comments
 (0)