Skip to content

Commit

Permalink
Merge pull request getsentry#173 from doismellburning/invalid_json_me…
Browse files Browse the repository at this point in the history
…ssage

Added an important missing word to an error message
  • Loading branch information
dcramer committed Aug 30, 2012
2 parents 03cc044 + ac629df commit 1ad8337
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 @@ -22,7 +22,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 1ad8337

Please sign in to comment.