summaryrefslogtreecommitdiff
path: root/alot/commands
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-02-27 18:25:05 +0100
committerAnton Khirnov <anton@khirnov.net>2020-02-27 18:32:13 +0100
commitbb140bf38725d15a6088a690e1539b26661fc4c9 (patch)
tree658ae6a5e7f7d402665682914ba146f76f736139 /alot/commands
parentd1cf87d5375c146c18d7c442c5a1f5d2fc481a55 (diff)
db/message: drop a useless getter.
Diffstat (limited to 'alot/commands')
-rw-r--r--alot/commands/thread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index 87e6b4a3..a0f148bb 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -690,7 +690,7 @@ class PipeCommand(Command):
pipestrings = [e.id for e in to_print]
separator = '\n'
elif self.output_format == 'filepath':
- pipestrings = [e.get_filename() for e in to_print]
+ pipestrings = [e.filename for e in to_print]
separator = '\n'
else:
for msg in to_print: