Skip to content

Commit

Permalink
Added an important missing word to an error message
Browse files Browse the repository at this point in the history
  • Loading branch information
doismellburning committed Aug 22, 2012
1 parent 63d32e0 commit ac629df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raven/scripts/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def store_json(option, opt_str, value, parser):
try:
value = json.loads(value)
except ValueError:
print "Invalid was used for option %s. Received: %s" % (opt_str, value)
print "Invalid JSON was used for option %s. Received: %s" % (opt_str, value)
sys.exit(1)
setattr(parser.values, option.dest, value)

Expand Down

0 comments on commit ac629df

Please sign in to comment.