GnuPGInterface can't work under windows.

This commit is contained in:
Yann Leboulanger 2006-04-23 17:12:14 +00:00
parent 3642ea0fab
commit 0c0e28b78f
1 changed files with 1 additions and 4 deletions

View File

@ -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()