Skip to content

Commit

Permalink
Merge branch 'master' of github.com:gpocentek/python-gitlab
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauvain Pocentek committed Dec 24, 2015
2 parents 5d88f68 + 6f1fd7e commit 45becb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gitlab/cli.py
Expand Up @@ -21,6 +21,7 @@
from __future__ import absolute_import
import argparse
import inspect
import operator
import re
import sys

Expand Down Expand Up @@ -256,7 +257,7 @@ def main():
classes.append(cls)
except AttributeError:
pass
classes.sort()
classes.sort(key=operator.attrgetter("__name__"))

for cls in classes:
arg_name = clsToWhat(cls)
Expand Down

0 comments on commit 45becb9

Please sign in to comment.