aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2012-12-18 16:46:20 -0600
committerSebastian Spaeth <Sebastian@SSpaeth.de>2012-12-25 19:16:03 +0100
commita1f9007bb0037b5efcd4b949f1e03858744e11a0 (patch)
tree7f0591d16f209ad06558fd9a412777471ee956af
parent6469040e4d8da6a70b602f1eb4c9150efe3218cb (diff)
downloadmediagoblin-a1f9007bb0037b5efcd4b949f1e03858744e11a0.tar.lz
mediagoblin-a1f9007bb0037b5efcd4b949f1e03858744e11a0.tar.xz
mediagoblin-a1f9007bb0037b5efcd4b949f1e03858744e11a0.zip
makeadmin and changepasswd had swapped help text
-rw-r--r--mediagoblin/gmg_commands/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/gmg_commands/__init__.py b/mediagoblin/gmg_commands/__init__.py
index e965dd57..19793ec3 100644
--- a/mediagoblin/gmg_commands/__init__.py
+++ b/mediagoblin/gmg_commands/__init__.py
@@ -37,11 +37,11 @@ SUBCOMMAND_MAP = {
'makeadmin': {
'setup': 'mediagoblin.gmg_commands.users:makeadmin_parser_setup',
'func': 'mediagoblin.gmg_commands.users:makeadmin',
- 'help': 'Changes a user\'s password'},
+ 'help': 'Makes user an admin'},
'changepw': {
'setup': 'mediagoblin.gmg_commands.users:changepw_parser_setup',
'func': 'mediagoblin.gmg_commands.users:changepw',
- 'help': 'Makes admin an user'},
+ 'help': 'Changes a user\'s password'},
'dbupdate': {
'setup': 'mediagoblin.gmg_commands.dbupdate:dbupdate_parse_setup',
'func': 'mediagoblin.gmg_commands.dbupdate:dbupdate',