diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-02-14 07:55:09 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-02-14 07:55:09 +0100 |
commit | 7260684d11e8ffe02461f761b6677d039b703a8d (patch) | |
tree | f6d76b8dad807186c99753c53f67c5e06c219dba /gitlab/cli.py | |
parent | b79af1d8a8515a419267a8f8e8937c9134bcea3a (diff) | |
download | gitlab-7260684d11e8ffe02461f761b6677d039b703a8d.tar.gz |
CLI: fix discovery of method to execute
Diffstat (limited to 'gitlab/cli.py')
-rw-r--r-- | gitlab/cli.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/cli.py b/gitlab/cli.py index cbd0d7c..0e7d5ef 100644 --- a/gitlab/cli.py +++ b/gitlab/cli.py @@ -375,6 +375,7 @@ def main(): "do_%s" % action]: if hasattr(cli, test): method = test + break if method is None: sys.stderr.write("Don't know how to deal with this!\n") |