summaryrefslogtreecommitdiff
path: root/alot/commands/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/commands/__init__.py')
-rw-r--r--alot/commands/__init__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/alot/commands/__init__.py b/alot/commands/__init__.py
index 1e16b4d4..61ff7f21 100644
--- a/alot/commands/__init__.py
+++ b/alot/commands/__init__.py
@@ -8,7 +8,7 @@ import os
import re
from ..settings.const import settings
-from ..helper import split_commandstring, string_decode
+from ..helper import split_commandstring
class Command:
@@ -167,7 +167,6 @@ def commandfactory(cmdline, mode='global'):
args = split_commandstring(cmdline)
except ValueError as e:
raise CommandParseError(str(e))
- args = [string_decode(x, 'utf-8') for x in args]
logging.debug('ARGS: %s', args)
cmdname = args[0]
args = args[1:]