summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu-Jie Lin <livibetter@gmail.com>2013-08-23 16:52:58 +0800
committerYu-Jie Lin <livibetter@gmail.com>2013-08-23 16:52:58 +0800
commita7122fc4c21f4705236eec0f47dbda3eeb53dbd3 (patch)
tree18b481924acc8c14ee450e3708f3d752ce484355
parent4ebaffe62fad1a80d2766dab6850ee6e15147a3c (diff)
downloadsmartypants-a7122fc4c21f4705236eec0f47dbda3eeb53dbd3.tar.gz
fix command-line --skip option help message
-rwxr-xr-xsmartypants2
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()