Updating cmd/manage.py get_arg_string() argument parser

Looks like get_arg_string() would improperly chop off the first two characters
of an argument that was passed in with one dash (-example).

Change-Id: I4409d3a2a3545e7160c0e666a864f8630bc141f1
This commit is contained in:
Daniel Allegood 2015-05-27 10:30:08 -07:00
parent 5e15614b5f
commit e16c648cc1
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ def get_arg_string(args):
# This is long optional arg
arg = args[2:]
else:
arg = args[3:]
arg = args[1:]
else:
arg = args