Changed cmdparser to properly convert to unicode before length measuring, which was causing unexpected behavior with non-ASCII charsets.

This commit is contained in:
Griatch 2015-09-04 21:11:01 +02:00
parent 3fcee453b9
commit a7e42b2a5b
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ def _init_command(mcs, **kwargs):
mcs.lock_storage = ";".join(temp)
if hasattr(mcs, 'arg_regex') and isinstance(mcs.arg_regex, basestring):
mcs.arg_regex = re.compile(r"%s" % mcs.arg_regex, re.I)
mcs.arg_regex = re.compile(r"%s" % mcs.arg_regex, re.I + re.UNICODE)
if not hasattr(mcs, "auto_help"):
mcs.auto_help = True
if not hasattr(mcs, 'is_exit'):