diff options
author | Yu-Jie Lin <livibetter@gmail.com> | 2013-08-23 16:52:58 +0800 |
---|---|---|
committer | Yu-Jie Lin <livibetter@gmail.com> | 2013-08-23 16:52:58 +0800 |
commit | a7122fc4c21f4705236eec0f47dbda3eeb53dbd3 (patch) | |
tree | 18b481924acc8c14ee450e3708f3d752ce484355 | |
parent | 4ebaffe62fad1a80d2766dab6850ee6e15147a3c (diff) | |
download | smartypants-a7122fc4c21f4705236eec0f47dbda3eeb53dbd3.tar.gz |
fix command-line --skip option help message
-rwxr-xr-x | smartypants | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smartypants b/smartypants index cb853bf..5d1525c 100755 --- a/smartypants +++ b/smartypants @@ -18,7 +18,7 @@ def main(): help='processing attributes (Default: %(default)s)') parser.add_argument('-s', '--skip', default=','.join(smartypants.tags_to_skip), - help='processing attributes (Default: %(default)s)') + help='skip HTML elements (Default: %(default)s)') parser.add_argument('files', metavar='FILE', type=argparse.FileType('r'), nargs='*', help='files to be processed ') args = parser.parse_args() |