correctly find gnupg module

This commit is contained in:
Yann Leboulanger 2014-03-27 21:18:26 +01:00
parent 39ff7c27ec
commit 37390ada35
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ except ImportError:
HAVE_GPG = True
try:
__import__('gnupg', globals(), locals(), [], 0)
__import__('common.gnupg', globals(), locals(), [], 0)
except ImportError:
HAVE_GPG = False
else: