From 8d10ac3bfe1f5a2841b13a4be6feb21fd99e24fa Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Mon, 24 Jul 2006 16:40:11 +0000 Subject: [PATCH] allow to verify signed presences even without a status message --- src/common/GnuPG.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/GnuPG.py b/src/common/GnuPG.py index 28b9c2987..bb6753fca 100644 --- a/src/common/GnuPG.py +++ b/src/common/GnuPG.py @@ -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()