summaryrefslogtreecommitdiff
path: root/alot/commands/envelope.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/commands/envelope.py')
-rw-r--r--alot/commands/envelope.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/commands/envelope.py b/alot/commands/envelope.py
index cc67a5a1..b74b71fe 100644
--- a/alot/commands/envelope.py
+++ b/alot/commands/envelope.py
@@ -246,7 +246,7 @@ class EditCommand(Command):
bodytext = translate(bodytext, ui=ui, dbm=ui.dbman)
#write stuff to tempfile
- tf = tempfile.NamedTemporaryFile(delete=False)
+ tf = tempfile.NamedTemporaryFile(delete=False, prefix='alot.')
content = bodytext
if headertext:
content = '%s%s' % (headertext, content)