Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
use Python-2.5-compatible syntax
  • Loading branch information
djmitche committed Feb 17, 2013
1 parent dd04ff1 commit 21ee2e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/status/words.py
Expand Up @@ -225,7 +225,7 @@ def splitArgs(self, args):
raise UsageError if failed"""
try:
return shlex.split(args)
except ValueError as e:
except ValueError, e:
raise UsageError(e)

def command_HELLO(self, args, who):
Expand Down

0 comments on commit 21ee2e3

Please sign in to comment.