try to have OpenPGP working in Windoz

This commit is contained in:
Nikos Kouremenos 2005-10-09 17:22:03 +00:00
parent a5ee542fee
commit 6d07ec5a0a
1 changed files with 4 additions and 1 deletions

View File

@ -269,7 +269,10 @@ class GnuPG:
"""
def __init__(self):
self.call = 'gpg'
if os.name == 'nt':
self.call = 'gpg.exe'
else:
self.call = 'gpg'
self.passphrase = None
self.options = Options()