fix issues with previous 2 commits. fixes #378

This commit is contained in:
clinton-hall 2014-05-08 14:49:22 +09:30
commit 59ff450d25
3 changed files with 15 additions and 11 deletions

View file

@ -189,11 +189,8 @@
# Mylar port. # Mylar port.
#myport=8090 #myport=8090
# Mylar username. # Mylar api key.
#myusername= #myapikey=
# Mylar password.
#mypassword=
# Mylar uses ssl (0, 1). # Mylar uses ssl (0, 1).
# #
@ -205,6 +202,11 @@
# set this if using a reverse proxy. # set this if using a reverse proxy.
#myweb_root= #myweb_root=
# Mylar wait_for
#
# Set the number of minutes to wait after calling the force process, to check the issue has changed status.
#myswait_for=1
## Gamez ## Gamez
# Gamez script category. # Gamez script category.

View file

@ -33,11 +33,8 @@
# Mylar port. # Mylar port.
#myport=8090 #myport=8090
# Mylar username. # Mylar api key.
#myusername= #myapikey=
# Mylar password.
#mypassword=
# Mylar uses ssl (0, 1). # Mylar uses ssl (0, 1).
# #
@ -49,6 +46,11 @@
# set this if using a reverse proxy. # set this if using a reverse proxy.
#myweb_root= #myweb_root=
# Mylar wait_for
#
# Set the number of minutes to wait after calling the force process, to check the issue has changed status.
#myswait_for=1
# Mylar watch directory. # Mylar watch directory.
# #
# set this to where your Mylar completed downloads are. # set this to where your Mylar completed downloads are.

View file

@ -230,7 +230,7 @@ def initialize(section=None):
GIT_BRANCH = CFG['General']['git_branch'] or 'dev' GIT_BRANCH = CFG['General']['git_branch'] or 'dev'
FORCE_CLEAN = CFG["General"]["force_clean"] FORCE_CLEAN = CFG["General"]["force_clean"]
FFMPEG_PATH = CFG["General"]["ffmpeg_path"] FFMPEG_PATH = CFG["General"]["ffmpeg_path"]
CHECK_MEDIA = int(CFG["General"]["check_Media"] CHECK_MEDIA = int(CFG["General"]["check_Media"])
# Check for updates via GitHUB # Check for updates via GitHUB
if versionCheck.CheckVersion().check_for_new_version(): if versionCheck.CheckVersion().check_for_new_version():