diff options
Diffstat (limited to 'user-profiles/feeds/imm-notmuch-insert.py')
-rw-r--r-- | user-profiles/feeds/imm-notmuch-insert.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user-profiles/feeds/imm-notmuch-insert.py b/user-profiles/feeds/imm-notmuch-insert.py index 2790abd0..a2dd3cb0 100644 --- a/user-profiles/feeds/imm-notmuch-insert.py +++ b/user-profiles/feeds/imm-notmuch-insert.py | |||
@@ -30,7 +30,7 @@ def main(): | |||
30 | subprocess.run( | 30 | subprocess.run( |
31 | args=['notmuch', 'insert'], | 31 | args=['notmuch', 'insert'], |
32 | check=True, | 32 | check=True, |
33 | stdin=BytesIO(bytes(msg)) | 33 | input=bytes(msg) |
34 | ) | 34 | ) |
35 | 35 | ||
36 | if __name__ == '__main__': | 36 | if __name__ == '__main__': |