diff options
Diffstat (limited to 'gitlab/v4/cli.py')
-rw-r--r-- | gitlab/v4/cli.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gitlab/v4/cli.py b/gitlab/v4/cli.py index 880b07d..b786e75 100644 --- a/gitlab/v4/cli.py +++ b/gitlab/v4/cli.py @@ -366,3 +366,6 @@ def run(gl, what, action, args, verbose, output, fields): printer.display(get_dict(data, fields), verbose=verbose, obj=data) elif isinstance(data, six.string_types): print(data) + else: + # We assume we got bytes + print(data.decode()) |