we no longer require pygnupg as an external dep
This commit is contained in:
parent
be103752e7
commit
7378f3d9a0
|
@ -1,4 +1,4 @@
|
||||||
## Core/GnuPG.py
|
## common/GnuPG.py
|
||||||
##
|
##
|
||||||
## Gajim Team:
|
## Gajim Team:
|
||||||
## - Yann Le Boulanger <asterix@lagaule.org>
|
## - Yann Le Boulanger <asterix@lagaule.org>
|
||||||
|
@ -22,9 +22,10 @@ from tempfile import *
|
||||||
USE_GPG = 1
|
USE_GPG = 1
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import GnuPGInterface
|
from common import GnuPGInterface
|
||||||
except:
|
except:
|
||||||
USE_GPG = 0
|
USE_GPG = 0
|
||||||
|
|
||||||
else:
|
else:
|
||||||
class GnuPG(GnuPGInterface.GnuPG):
|
class GnuPG(GnuPGInterface.GnuPG):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
Loading…
Reference in New Issue