There was an error while loading. Please reload this page.
1 parent bdbec67 commit bbef1f9Copy full SHA for bbef1f9
1 file changed
gitlab/v4/cli.py
@@ -366,3 +366,6 @@ def run(gl, what, action, args, verbose, output, fields):
366
printer.display(get_dict(data, fields), verbose=verbose, obj=data)
367
elif isinstance(data, six.string_types):
368
print(data)
369
+ else:
370
+ # We assume we got bytes
371
+ print(data.decode())
0 commit comments