Skip to content

Commit

Permalink
allow colons in user's arguments, such as --tc url:127.0.0.1:5000
Browse files Browse the repository at this point in the history
  • Loading branch information
aconrad committed Mar 25, 2011
1 parent 67e22f9 commit 75bc77d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def configure(self, options, noseconfig):

overrides = tolist(options.overrides) or []
for override in overrides:
keys, val = override.split(":")
keys, val = override.split(":", 1)
if options.exact:
config[keys] = val
else:
Expand Down

0 comments on commit 75bc77d

Please sign in to comment.