nothing important

This commit is contained in:
Yann Leboulanger 2005-07-22 17:28:45 +00:00
parent 4dd4de8dfc
commit ff15366b2c
1 changed files with 3 additions and 4 deletions

View File

@ -115,10 +115,9 @@ else:
try: proc.wait()
except IOError: pass
if resp.has_key('BAD_PASSPHRASE'):
return 'BAD_PASSPHRASE'
elif resp.has_key('GOOD_PASSPHRASE'):
if resp.has_key('GOOD_PASSPHRASE'):
return self._stripHeaderFooter(output)
return 'BAD_PASSPHRASE'
def verify(self, str, sign):
if not USE_GPG:
@ -154,7 +153,7 @@ else:
def get_keys(self, secret = False):
if not USE_GPG:
return
return {}
if secret:
opt = '--list-secret-keys'
else: