summaryrefslogtreecommitdiff
path: root/user-profiles
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2021-09-04 22:23:17 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2021-09-04 22:23:17 +0200
commit51ce5943ac21fd59cc92d788b2d1837ccc6ee495 (patch)
tree5ad370fdb8e64984c21a25afdc9613f5adf9496d /user-profiles
parent2f8f8fbd31ee0b305e2edd5883878e0ca861edb8 (diff)
downloadnixos-51ce5943ac21fd59cc92d788b2d1837ccc6ee495.tar
nixos-51ce5943ac21fd59cc92d788b2d1837ccc6ee495.tar.gz
nixos-51ce5943ac21fd59cc92d788b2d1837ccc6ee495.tar.bz2
nixos-51ce5943ac21fd59cc92d788b2d1837ccc6ee495.tar.xz
nixos-51ce5943ac21fd59cc92d788b2d1837ccc6ee495.zip
feeds: notmuch insert input
Diffstat (limited to 'user-profiles')
-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__':