Skip to content

Commit

Permalink
Allow '=' in runner parameters values
Browse files Browse the repository at this point in the history
  • Loading branch information
ashald committed Dec 28, 2015
1 parent fbe6886 commit 613d7c7
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 613d7c7

Please sign in to comment.