summaryrefslogtreecommitdiff
path: root/Remote/Helper
diff options
context:
space:
mode:
authorJoey Hess <id@joeyh.name>2014-12-02 13:50:45 -0400
committerJoey Hess <id@joeyh.name>2014-12-02 13:50:45 -0400
commit55fa1789dd893918c8e73d42e15a4cdaa9a9fde7 (patch)
treefb679abbebae2edd1bab51362318af201a522188 /Remote/Helper
parent17a76b62925fb641ce58886407764a32cf20e4d0 (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')
-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 4903cffb46..11e20d7b06 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)