diff options
author | tilly-Q <nattilypigeonfowl@gmail.com> | 2014-02-13 13:57:10 -0500 |
---|---|---|
committer | tilly-Q <nattilypigeonfowl@gmail.com> | 2014-04-21 12:10:19 -0400 |
commit | 6c37aeaa33aa21d6937e392185df4d0f6bffef7a (patch) | |
tree | 6637f84496f183d9a30e1b36ebff147954d2ee32 /mediagoblin/gmg_commands/batchaddmedia.py | |
parent | 268f243074fd4cd97017062e4a9e9afd0a860b32 (diff) | |
download | mediagoblin-6c37aeaa33aa21d6937e392185df4d0f6bffef7a.tar.lz mediagoblin-6c37aeaa33aa21d6937e392185df4d0f6bffef7a.tar.xz mediagoblin-6c37aeaa33aa21d6937e392185df4d0f6bffef7a.zip |
Minor change in the wording of argparsing.
Diffstat (limited to 'mediagoblin/gmg_commands/batchaddmedia.py')
-rw-r--r-- | mediagoblin/gmg_commands/batchaddmedia.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/gmg_commands/batchaddmedia.py b/mediagoblin/gmg_commands/batchaddmedia.py index 7d7a2d4f..2fd36dfb 100644 --- a/mediagoblin/gmg_commands/batchaddmedia.py +++ b/mediagoblin/gmg_commands/batchaddmedia.py @@ -36,12 +36,12 @@ def parser_setup(subparser): '--directory', action='store_const', const='directory', dest='target_type', default='directory', help=( -"Target is a directory")) +"Choose this option is the target is a directory.")) target_type.add_argument('-a', '--archive', action='store_const', const='archive', dest='target_type', help=( -"Target is an archive.")) +"Choose this option if the target is an archive.")) subparser.add_argument( 'target_path', help=( |