Don't test for Qt in daemon mode

Initialisation of the daemon variable was missing at launch.

Fixes #161
This commit is contained in:
mailchuck 2016-01-17 14:25:46 +01:00 committed by Peter Surda
parent 72f9e29931
commit 6a965cd31a
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ class Main:
if __name__ == "__main__": if __name__ == "__main__":
mainprogram = Main() mainprogram = Main()
mainprogram.start() mainprogram.start(shared.safeConfigGetBoolean('bitmessagesettings', 'daemon'))
# So far, the creation of and management of the Bitmessage protocol and this # So far, the creation of and management of the Bitmessage protocol and this