Skip to content

Commit

Permalink
Merge pull request #65 from Ashald/patch-1
Browse files Browse the repository at this point in the history
Allow '=' in runner parameters values
  • Loading branch information
whiteinge committed Dec 28, 2015
2 parents fbe6886 + 613d7c7 commit 148a7d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pepper/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def parse_cmd(self):
elif client.startswith('runner'):
low['fun'] = args.pop(0)
for arg in args:
key, value = arg.split('=')
key, value = arg.split('=', 1)
low[key] = value
else:
if len(args) < 1:
Expand Down

0 comments on commit 148a7d8

Please sign in to comment.