allow to verify signed presences even without a status message

This commit is contained in:
Yann Leboulanger 2006-07-24 16:40:11 +00:00
parent ea82b1dcc1
commit 8d10ac3bfe
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ else:
def verify(self, str, sign):
if not USE_GPG:
return str
if not str:
if str == None:
return ''
f = tmpfile()
fd = f.fileno()