summaryrefslogtreecommitdiff
path: root/alot/commands.py
diff options
context:
space:
mode:
authorpazz <patricktotzke@gmail.com>2011-07-18 19:28:38 +0100
committerpazz <patricktotzke@gmail.com>2011-07-18 19:28:38 +0100
commitbe2fd918e1c91e78b2b56dd1940ec40d05a8b03f (patch)
tree4be57b00aef00333172490ae0a1a7e6ad2f6ba01 /alot/commands.py
parentcc2f57b706c2deda1a045624ce51ee0a662151ef (diff)
prompt command
Diffstat (limited to 'alot/commands.py')
-rw-r--r--alot/commands.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/alot/commands.py b/alot/commands.py
index 14eac822..50dd0ddd 100644
--- a/alot/commands.py
+++ b/alot/commands.py
@@ -97,8 +97,9 @@ class SearchCommand(Command):
class PromptCommand(Command):
- def __init__(self, startstring='', **kwargs):
+ def __init__(self, startstring=u'', **kwargs):
self.startstring = startstring
+ Command.__init__(self, **kwargs)
def apply(self, ui):
ui.commandprompt(self.startstring)