summaryrefslogtreecommitdiff
path: root/user-profiles/feeds/imm-notmuch-insert.py
diff options
context:
space:
mode:
Diffstat (limited to 'user-profiles/feeds/imm-notmuch-insert.py')
-rw-r--r--user-profiles/feeds/imm-notmuch-insert.py2
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
36if __name__ == '__main__': 36if __name__ == '__main__':