run -c without python-qt installed #688

Merged
rubensayshi merged 1 commits from curses-without-qt into master 2014-07-16 22:46:11 +02:00
Showing only changes of commit c8bf3ccc63 - Show all commits

View File

@ -214,6 +214,7 @@ class Main:
singleListenerThread.start() singleListenerThread.start()
if daemon == False and shared.safeConfigGetBoolean('bitmessagesettings', 'daemon') == False: if daemon == False and shared.safeConfigGetBoolean('bitmessagesettings', 'daemon') == False:
if curses == False:
try: try:
from PyQt4 import QtCore, QtGui from PyQt4 import QtCore, QtGui
except Exception as err: except Exception as err:
@ -222,7 +223,6 @@ class Main:
print 'You can also run PyBitmessage with the new curses interface by providing \'-c\' as a commandline argument.' print 'You can also run PyBitmessage with the new curses interface by providing \'-c\' as a commandline argument.'
os._exit(0) os._exit(0)
if curses == False:
import bitmessageqt import bitmessageqt
bitmessageqt.run() bitmessageqt.run()
else: else: