From dfb68be4102014a2aa2934adfec86c89781c0990 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 19 May 2015 16:40:15 +0200 Subject: [PATCH] gpg: Confirmed that this error happens on UNIX too. --- src/gpg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gpg.py b/src/gpg.py index 1e2c37d1e..c384af2b4 100644 --- a/src/gpg.py +++ b/src/gpg.py @@ -47,7 +47,7 @@ try: except TypeError: # This is the 'gnupg' library, not 'python-gnupg'. gnupg = None -except OSError: # WindowsError? +except OSError: gnupg = None log.error('Cannot use GPG. python-gnupg is installed but cannot ' 'find the gnupg executable.')