Skip to content

Commit cf6f74f

Browse files
committed
Only take into account the first equal sign when setting config vars
1 parent 45aff6c commit cf6f74f

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)