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,6 +269,9 @@ class GnuPG:
""" """
def __init__(self): def __init__(self):
if os.name == 'nt':
self.call = 'gpg.exe'
else:
self.call = 'gpg' self.call = 'gpg'
self.passphrase = None self.passphrase = None
self.options = Options() self.options = Options()