Remove whitespace around args

Fixes #8343
This commit is contained in:
James Cammarata 2014-07-30 08:51:27 -05:00
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