From 0c0e28b78fb66bb0447c3d352d35b4d5f9c750fe Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sun, 23 Apr 2006 17:12:14 +0000 Subject: [PATCH] GnuPGInterface can't work under windows. --- src/common/GnuPGInterface.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/common/GnuPGInterface.py b/src/common/GnuPGInterface.py index 44559296b..46fca86aa 100644 --- a/src/common/GnuPGInterface.py +++ b/src/common/GnuPGInterface.py @@ -269,10 +269,7 @@ class GnuPG: """ def __init__(self): - if os.name == 'nt': - self.call = 'gpg.exe' - else: - self.call = 'gpg' + self.call = 'gpg' self.passphrase = None self.options = Options()