Skip to content
Snippets Groups Projects
Commit 7378f3d9 authored by nkour's avatar nkour
Browse files

we no longer require pygnupg as an external dep

parent be103752
No related branches found
No related tags found
No related merge requests found
## Core/GnuPG.py
## common/GnuPG.py
##
## Gajim Team:
## - Yann Le Boulanger <asterix@lagaule.org>
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment