diff options
Diffstat (limited to 'Notmuch.hs')
-rw-r--r-- | Notmuch.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -179,9 +179,9 @@ notmuchShowPart term partId = do setTag :: String -> String -> IO LBS.ByteString setTag tag i = do - notmuch [ "tag", "+" <> tag , "id:" <> i ] + notmuch [ "tag", "+" <> tag , i ] unsetTag :: String -> String -> IO LBS.ByteString unsetTag tag i = do - notmuch [ "tag", "-" <> tag , "id:" <> i ] + notmuch [ "tag", "-" <> tag , i ] |