Apply logfile patch for Windows build from Slurdge.

This commit is contained in:
Andrew Resch 2007-11-25 12:16:29 +00:00
parent 51bc2329c2
commit 1e65e4e396
2 changed files with 4 additions and 2 deletions

View File

@ -54,6 +54,10 @@ parser.add_option("-c", "--config", dest="config", help="Sets the configuration
if (options.config != None):
deluge.common.CONFIG_DIR = options.config
if hasattr(sys, "frozen"):
sys.stdout = open(os.path.join(deluge.common.CONFIG_DIR,"deluge.stdout.log"), "w")
sys.stderr = open(os.path.join(deluge.common.CONFIG_DIR,"deluge.stderr.log"), "w")
def upgrade_old_persistent_state():
pstate_file_path = os.path.join(deluge.common.CONFIG_DIR,
deluge.core.STATE_FILENAME)

View File

@ -48,8 +48,6 @@ import sys
if hasattr(sys, "frozen"):
INSTALL_PREFIX = ''
os.chdir(os.path.dirname(unicode(sys.executable, sys.getfilesystemencoding( ))))
sys.stdout = open("deluge.stdout.log", "w")
sys.stderr = open("deluge.stderr.log", "w")
else:
# the necessary substitutions are made at installation time
INSTALL_PREFIX = '@datadir@'