fixed int error
This commit is contained in:
parent
b8c3d18a24
commit
ae7f7de982
2
start.py
2
start.py
@ -9,7 +9,7 @@ config = configparser.ConfigParser()
|
|||||||
config.read('htt.conf')
|
config.read('htt.conf')
|
||||||
domain = str(config['DEFAULT']['domain'])
|
domain = str(config['DEFAULT']['domain'])
|
||||||
MAINTENANCE_INTERVAL_MINUTES = float(config['DEFAULT']['cleartime'])
|
MAINTENANCE_INTERVAL_MINUTES = float(config['DEFAULT']['cleartime'])
|
||||||
port = float(config['DEFAULT']['port'])
|
port = int(config['DEFAULT']['port'])
|
||||||
|
|
||||||
def popup(mesage,link="",file="popup.html"):
|
def popup(mesage,link="",file="popup.html"):
|
||||||
out = load(file)
|
out = load(file)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user