Skip to content

Commit c8b5586

Browse files
committed
Merge pull request #500 from nathansamson/nathan/equalsinvars
Only take into account the first equal sign when setting config vars
2 parents 45aff6c + cf6f74f commit c8b5586

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/deis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def dictify(args):
262262
data = {}
263263
for arg in args:
264264
try:
265-
var, val = arg.split('=')
265+
var, val = arg.split('=', 1)
266266
except ValueError:
267267
raise DocoptExit()
268268
# Try to coerce the value to an int since that's a common use case

0 commit comments

Comments
 (0)