summaryrefslogtreecommitdiff
path: root/alot/commands/globals.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/commands/globals.py')
-rw-r--r--alot/commands/globals.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/commands/globals.py b/alot/commands/globals.py
index 51107899..7073d524 100644
--- a/alot/commands/globals.py
+++ b/alot/commands/globals.py
@@ -644,14 +644,14 @@ class HelpCommand(Command):
'help': 'do not add signature'}),
(['--spawn'], {'action': BooleanAction, 'default': None,
'help': 'spawn editor in new terminal'}),
- (['rest'], {'nargs': '*', 'default': None, 'help': ''}),
+ (['rest'], {'nargs': '*'}),
])
class ComposeCommand(Command):
"""compose a new email"""
def __init__(self, envelope=None, headers={}, template=None,
sender=u'', subject=u'', to=[], cc=[], bcc=[], attach=None,
- omit_signature=False, spawn=None, rest=None, **kwargs):
+ omit_signature=False, spawn=None, rest=[], **kwargs):
"""
:param envelope: use existing envelope
:type envelope: :class:`~alot.db.envelope.Envelope`