diff --git a/src/common/GnuPG.py b/src/common/GnuPG.py
index d9ceabf403eda11b5c7463759df292796e92fcf2..e14a9eea5ec0687a5edabb8792540c86ddaa5af7 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 <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()