Commit 189824dd by James Cammarata

Remove whitespace around args

Fixes #8343
parent f61ba3d0
......@@ -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
......
......@@ -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):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment