Skip to content

Commit

Permalink
command_runner should not be case sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonty committed Aug 5, 2010
1 parent 14bddb9 commit 76367ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/command_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

args = sys.argv[1]
bits = args.split(' ')
command = bits[3]
command = bits[3].lower()

found = False
if re.match('^[a-z0-9]+$', command):
Expand Down

0 comments on commit 76367ef

Please sign in to comment.