summaryrefslogtreecommitdiffstats
path: root/pyLoadCore.py
diff options
context:
space:
mode:
authorGravatar mkaay <mkaay@mkaay.de> 2010-05-02 22:06:56 +0200
committerGravatar mkaay <mkaay@mkaay.de> 2010-05-02 22:06:56 +0200
commit2801c0b174c5ee4dc7aae9e330527d1d0d4e694b (patch)
treeb89f1aaccc98316bb2916828687ec7ea781bcaff /pyLoadCore.py
parentcustom config dir support (diff)
downloadpyload-2801c0b174c5ee4dc7aae9e330527d1d0d4e694b.tar.xz
config dir fix
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-xpyLoadCore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py
index d20ab33e3..8d8793b33 100755
--- a/pyLoadCore.py
+++ b/pyLoadCore.py
@@ -86,7 +86,7 @@ class Core(object):
options, args = getopt(argv[1:], 'vca:hdusC:', ["version", "clear", "add=", "help", "debug", "user", "setup", "configdir="])
customConfig = None
for option, argument in options:
- if option in ("-C", "--configfile="):
+ if option in ("-C", "--configdir"):
customConfig = argument
if customConfig:
self.configdir = self.make_path(customConfig)