diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-11-10 16:23:32 +0000 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-11-10 16:23:32 +0000 |
commit | 2352c500125ec777308aff554541efc311245bfb (patch) | |
tree | edefe899a8ed793f6e6deb9da0b9bdfad2fc1293 /pykolab/cli/commands.py | |
parent | 65f4b091251cbdcd351180fba96f9dc04c0ec9d3 (diff) | |
download | pykolab-2352c500125ec777308aff554541efc311245bfb.tar.gz |
Fix names of commands referred to in the description of alias commands.
Diffstat (limited to 'pykolab/cli/commands.py')
-rw-r--r-- | pykolab/cli/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pykolab/cli/commands.py b/pykolab/cli/commands.py index 6dedc6c..21c2bb4 100644 --- a/pykolab/cli/commands.py +++ b/pykolab/cli/commands.py @@ -187,7 +187,7 @@ def register(cmd_name, func, group=None, description=None, aliases=[]): commands[alias] = { 'cmd_name': cmd_name, 'function': func, - 'description': _("Alias for %s") % (cmd_name) + 'description': _("Alias for %s") % (cmd_name,replace('_','-')) } ## |