summaryrefslogtreecommitdiff
path: root/ick-html
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-11-06 16:39:48 +0000
committerLars Wirzenius <liw@liw.fi>2015-11-06 16:39:48 +0000
commit5ca0ed2ff199515e51e7a858d661c0bc630d29ce (patch)
tree51f2820d1dfa30f795d8b5d18c58c0104c98ac2f /ick-html
parentfa90b3cdc503cc983b59819177067c398530197e (diff)
downloadick-5ca0ed2ff199515e51e7a858d661c0bc630d29ce.tar.gz
Fix error message of arg count in ick-html
Diffstat (limited to 'ick-html')
-rwxr-xr-xick-html2
1 files changed, 1 insertions, 1 deletions
diff --git a/ick-html b/ick-html
index 2f26d51..f97c36f 100755
--- a/ick-html
+++ b/ick-html
@@ -37,7 +37,7 @@ class IckHTML(cliapp.Application):
def parse_command_line_args(self, args):
if len(args) != 2:
- raise cliapp.AppException('Must have exactly one argument')
+ raise cliapp.AppException('Must have exactly two arguments')
return args[0], args[1]
def read_ick_file(self, filename):