summaryrefslogtreecommitdiff
path: root/Remote/Helper/Encryptable.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <id@joeyh.name>2014-12-02 13:50:45 -0400
committerGravatar Joey Hess <id@joeyh.name>2014-12-02 13:50:45 -0400
commit4f64f979316f964add68990a64a753eae05c3f9b (patch)
treee0ee2ed13db8d3c568e636311ffb58993407f7cf /Remote/Helper/Encryptable.hs
parentfa887dca8511d4a3b8348e9cb7f15a3e213174e7 (diff)
Don't show "(gpg)" when decrypting the remote encryption cipher, since this could be taken to read that's the only time git-annex runs gpg, which is not the case.
Diffstat (limited to 'Remote/Helper/Encryptable.hs')
-rw-r--r--Remote/Helper/Encryptable.hs1
1 files changed, 0 insertions, 1 deletions
diff --git a/Remote/Helper/Encryptable.hs b/Remote/Helper/Encryptable.hs
index 4903cffb4..11e20d7b0 100644
--- a/Remote/Helper/Encryptable.hs
+++ b/Remote/Helper/Encryptable.hs
@@ -109,7 +109,6 @@ remoteCipher' c = go $ extractCipher c
case M.lookup encipher cache of
Just cipher -> return $ Just (cipher, encipher)
Nothing -> do
- showNote "gpg"
cipher <- liftIO $ decryptCipher encipher
Annex.changeState (\s -> s { Annex.ciphers = M.insert encipher cipher cache })
return $ Just (cipher, encipher)