Merge branch 'master' of https://github.com/Bitmessage/PyBitmessage
fixed with origin bitmessage
This commit is contained in:
commit
0227fbe8e7
|
@ -720,7 +720,6 @@ if __name__ == "__main__":
|
|||
|
||||
helper_bootstrap.knownNodes()
|
||||
helper_bootstrap.dns()
|
||||
|
||||
# Start the address generation thread
|
||||
addressGeneratorThread = addressGenerator()
|
||||
addressGeneratorThread.daemon = True # close the main program even if there are threads left
|
||||
|
|
|
@ -118,8 +118,11 @@ def lookupAppdataFolder():
|
|||
if "HOME" in environ:
|
||||
dataFolder = path.join(os.environ["HOME"], "Library/Application Support/", APPNAME) + '/'
|
||||
else:
|
||||
logger.critical('Could not find home folder, please report this message and your '
|
||||
'OS X version to the BitMessage Github.')
|
||||
stringToLog = 'Could not find home folder, please report this message and your OS X version to the BitMessage Github.'
|
||||
if 'logger' in globals():
|
||||
logger.critical(stringToLog)
|
||||
else:
|
||||
print stringToLog
|
||||
sys.exit()
|
||||
|
||||
elif 'win32' in sys.platform or 'win64' in sys.platform:
|
||||
|
@ -133,8 +136,12 @@ def lookupAppdataFolder():
|
|||
|
||||
# Migrate existing data to the proper location if this is an existing install
|
||||
try:
|
||||
logger.info("Moving data folder to %s" % (dataFolder))
|
||||
move(path.join(environ["HOME"], ".%s" % APPNAME), dataFolder)
|
||||
stringToLog = "Moving data folder to %s" % (dataFolder)
|
||||
if 'logger' in globals():
|
||||
logger.info(stringToLog)
|
||||
else:
|
||||
print stringToLog
|
||||
except IOError:
|
||||
pass
|
||||
dataFolder = dataFolder + '/'
|
||||
|
|
Reference in New Issue
Block a user