mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 21:33:13 -07:00
Corrected path's to config files in config class
This commit is contained in:
parent
cf0b2aae7c
commit
c47f3f60c5
1 changed files with 3 additions and 3 deletions
|
@ -29,11 +29,11 @@ class config(object):
|
||||||
|
|
||||||
# config files
|
# config files
|
||||||
PROGRAM_DIR = os.path.dirname(os.path.normpath(os.path.abspath(__file__)))
|
PROGRAM_DIR = os.path.dirname(os.path.normpath(os.path.abspath(__file__)))
|
||||||
CONFIG_FILE = os.path.join(PROGRAM_DIR, "../autoProcessMedia.cfg")
|
CONFIG_FILE = os.path.join(PROGRAM_DIR, "autoProcessMedia.cfg")
|
||||||
SAMPLE_CONFIG_FILE = os.path.join(PROGRAM_DIR, "../autoProcessMedia.cfg.sample")
|
SAMPLE_CONFIG_FILE = os.path.join(PROGRAM_DIR, "autoProcessMedia.cfg.sample")
|
||||||
MOVIE_CONFIG_FILE = os.path.join(PROGRAM_DIR, "autoProcessMovie.cfg")
|
MOVIE_CONFIG_FILE = os.path.join(PROGRAM_DIR, "autoProcessMovie.cfg")
|
||||||
TV_CONFIG_FILE = os.path.join(PROGRAM_DIR, "autoProcessTv.cfg")
|
TV_CONFIG_FILE = os.path.join(PROGRAM_DIR, "autoProcessTv.cfg")
|
||||||
LOG_FILE = os.path.join(PROGRAM_DIR, "../postprocess.log")
|
LOG_FILE = os.path.join(PROGRAM_DIR, "postprocess.log")
|
||||||
|
|
||||||
# config error handling classes
|
# config error handling classes
|
||||||
Error = ConfigParser.Error
|
Error = ConfigParser.Error
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue