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:
|
||||
## - Yann Le Boulanger <asterix@lagaule.org>
|
||||
|
@ -22,9 +22,10 @@ from tempfile import *
|
|||
USE_GPG = 1
|
||||
|
||||
try:
|
||||
import GnuPGInterface
|
||||
from common import GnuPGInterface
|
||||
except:
|
||||
USE_GPG = 0
|
||||
|
||||
else:
|
||||
class GnuPG(GnuPGInterface.GnuPG):
|
||||
def __init__(self):
|
||||
|
|
Loading…
Reference in New Issue