Skip to content
Snippets Groups Projects
Commit 2296e75d authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Replace unicode char in print message

parent 1bf66b85
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ class GajimApplication(Gtk.Application):
from distutils.version import LooseVersion as V
if V(nbxmpp.__version__) < V(MIN_NBXMPP_VER):
print('Gajim needs python-nbxmpp >= %s to run. '
'Quitting' % MIN_NBXMPP_VER)
'Quitting...' % MIN_NBXMPP_VER)
sys.exit(1)
# Create and initialize Application Paths & Databases
......
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