From 453c1e55c71a96c9529ecdca1d55278cc41088d6 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sat, 18 Jan 2014 18:45:13 +0100 Subject: rewritten download scheduling, improved account manager, db version increased all data will be overwritten --- pyload/InitHomeDir.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'pyload/InitHomeDir.py') diff --git a/pyload/InitHomeDir.py b/pyload/InitHomeDir.py index a68e1a197..51dfc7686 100644 --- a/pyload/InitHomeDir.py +++ b/pyload/InitHomeDir.py @@ -59,6 +59,7 @@ else: __builtin__.homedir = homedir configdir = None +final = False args = " ".join(argv) # dirty method to set configdir from commandline arguments if "--configdir=" in args: @@ -83,9 +84,15 @@ if not configdir: configname = ".pyload" if platform in ("posix", "linux2", "darwin") else "pyload" configdir = path.join(homedir, configname + dev) -def init_dir(other_path=None): + +def init_dir(other_path=None, no_change=False): # switch to pyload home directory, or path at other_path global configdir + global final + + if final: return + + if no_change: final = True if other_path is not None: configdir = join(pypath, other_path) -- cgit v1.2.3