we now require python-nbxmpp 0.3.3

This commit is contained in:
Yann Leboulanger 2014-03-01 21:29:46 +01:00
parent d0b0f6992a
commit f1ce924a92
1 changed files with 3 additions and 3 deletions

View File

@ -70,11 +70,11 @@ except ImportError:
try: try:
from distutils.version import LooseVersion as V from distutils.version import LooseVersion as V
if V(nbxmpp.__version__) < V("0.3.1"): if V(nbxmpp.__version__) < V("0.3.3"):
print('Gajim needs python-nbxmpp > 0.3.1 to run. Quiting...') print('Gajim needs python-nbxmpp > 0.3.3 to run. Quiting...')
sys.exit() sys.exit()
except: except:
print('Gajim needs python-nbxmpp > 0.3.1 to run. Quiting...') print('Gajim needs python-nbxmpp > 0.3.3 to run. Quiting...')
sys.exit() sys.exit()
#from common import demandimport #from common import demandimport