summaryrefslogtreecommitdiff
path: root/lib/GnuPGAgent.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/GnuPGAgent.hs')
-rw-r--r--lib/GnuPGAgent.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/GnuPGAgent.hs b/lib/GnuPGAgent.hs
index e5f91a2..f1d1552 100644
--- a/lib/GnuPGAgent.hs
+++ b/lib/GnuPGAgent.hs
@@ -36,7 +36,8 @@ import ProcessUtils
36import Control.Monad.Fix 36import Control.Monad.Fix
37import Control.Concurrent (threadDelay) 37import Control.Concurrent (threadDelay)
38 38
39fingerprint = show . Data.OpenPGP.Util.fingerprint 39fingerprint :: Packet -> String
40fingerprint = take 40 . show . Data.OpenPGP.Util.fingerprint
40 41
41data GnuPGAgent = GnuPGAgent { agentHandle :: Handle } 42data GnuPGAgent = GnuPGAgent { agentHandle :: Handle }
42 43