Remove whitespace around args

Fixes #8343
This commit is contained in:
James Cammarata 2014-07-30 08:51:27 -05:00
parent f61ba3d047
commit 189824dd76
2 changed files with 2 additions and 1 deletions

View file

@ -70,6 +70,7 @@ def split_args(args):
# here we encode the args, so we have a uniform charset to
# work with, and split on white space
args = args.strip()
try:
args = args.encode('utf-8')
do_decode = True

View file

@ -707,7 +707,7 @@ def parse_kv(args):
for x in vargs:
if "=" in x:
k, v = x.split("=",1)
options[k] = unquote(v)
options[k] = unquote(v.strip())
return options
def merge_hash(a, b):