diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-09-07 21:34:53 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-09-07 21:34:53 +0200 |
commit | d0e2a1595c54a1481b8ca8a4de6e1c12686be364 (patch) | |
tree | a9c959d0a9e029e0cbba54a553310f91868a7127 /gitlab/cli.py | |
parent | 60efc83b5a00c733b5fc19fc458674709cd7f9ce (diff) | |
download | gitlab-d0e2a1595c54a1481b8ca8a4de6e1c12686be364.tar.gz |
pep8 fix
Diffstat (limited to 'gitlab/cli.py')
-rw-r--r-- | gitlab/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/cli.py b/gitlab/cli.py index be9b112..1ab7d62 100644 --- a/gitlab/cli.py +++ b/gitlab/cli.py @@ -47,7 +47,7 @@ def register_custom_action(cls_names, mandatory=tuple(), optional=tuple()): if type(cls_names) != tuple: classes = (cls_names, ) - for cls_name in cls_names: + for cls_name in classes: final_name = cls_name if cls_name.endswith('Manager'): final_name = cls_name.replace('Manager', '') |