From 7378f3d9a06c67d70c03208cc19957317033d302 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Fri, 3 Jun 2005 17:35:10 +0000 Subject: [PATCH] we no longer require pygnupg as an external dep --- src/common/GnuPG.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/common/GnuPG.py b/src/common/GnuPG.py index d9ceabf40..e14a9eea5 100644 --- a/src/common/GnuPG.py +++ b/src/common/GnuPG.py @@ -1,4 +1,4 @@ -## Core/GnuPG.py +## common/GnuPG.py ## ## Gajim Team: ## - Yann Le Boulanger @@ -22,11 +22,12 @@ from tempfile import * USE_GPG = 1 try: - import GnuPGInterface + from common import GnuPGInterface except: USE_GPG = 0 + else: - class GnuPG(GnuPGInterface.GnuPG): + class GnuPG(GnuPGInterface.GnuPG): def __init__(self): GnuPGInterface.GnuPG.__init__(self) self._setup_my_options()