Added deamon modoe to main function

This commit is contained in:
merlink 2013-08-06 10:37:31 +02:00 committed by Jordan Hall
parent f8cdfbfaa0
commit 28acbac823
1 changed files with 3 additions and 2 deletions

View File

@ -770,7 +770,7 @@ if shared.useVeryEasyProofOfWorkForTesting:
shared.networkDefaultPayloadLengthExtraBytes = int(
shared.networkDefaultPayloadLengthExtraBytes / 7000)
def main():
def main(deamon=False):
# is the application already running? If yes then exit.
thisapp = singleton.singleinstance()
@ -823,7 +823,7 @@ def main():
singleListenerThread.daemon = True # close the main program even if there are threads left
singleListenerThread.start()
if not shared.safeConfigGetBoolean('bitmessagesettings', 'daemon'):
if deamon == False and shared.safeConfigGetBoolean('bitmessagesettings', 'daemon') == False:
try:
from PyQt4 import QtCore, QtGui
except Exception as err:
@ -840,6 +840,7 @@ def main():
while True:
time.sleep(20)
if __name__ == "__main__":
main()