fixed problem with localhost being set as SABhost with no http

This commit is contained in:
evilhero 2012-09-19 09:56:09 -04:00
parent a7f766f318
commit f841017290
2 changed files with 5 additions and 2 deletions

View File

@ -38,7 +38,6 @@ def main():
mylar.FULL_PATH = os.path.abspath(__file__)
mylar.PROG_DIR = os.path.dirname(mylar.FULL_PATH)
print ("the full path is : " + str(mylar.PROG_DIR))
mylar.ARGS = sys.argv[1:]
# From sickbeard

View File

@ -302,7 +302,11 @@ def initialize():
FOLDER_FORMAT = replace_all(FOLDER_FORMAT, folder_values)
CONFIG_VERSION = '2'
if 'http://' not in SAB_HOST[:7]:
SAB_HOST = 'http://' + SAB_HOST
#print ("SAB_HOST:" + SAB_HOST)
if not LOG_DIR:
LOG_DIR = os.path.join(DATA_DIR, 'logs')