Update template.py

core.setdir discarded in os.path.join due to aboslute path as second argument
This commit is contained in:
matgad 2016-09-06 15:37:44 +02:00 committed by GitHub
parent 59d328085c
commit 0e60aa6524

View file

@ -77,7 +77,7 @@ if not os.path.isdir(os.path.join(core.setdir, "web_clone")):
os.makedirs(os.path.join(core.setdir, "web_clone/"))
if os.path.isfile(os.path.join(core.setdir, "web_clone/index.html")):
os.remove(os.path.join(core.setdir, "web_clone/index.html"))
shutil.copyfile("src/html/index.template", os.path.join(core.setdir, "/web_clone/index.html"))
shutil.copyfile("src/html/index.template", os.path.join(core.setdir, "web_clone/index.html"))
with open(os.path.join(core.setdir, "site.template"), 'w') as filewrite:
filewrite.write("TEMPLATE=SELF\nURL={0}".format(url))