Skip to content

Commit

Permalink
fix: for simple table web
Browse files Browse the repository at this point in the history
Change-Id: Ic835f6559e1be5e654e6e0a457749aa250286eef
  • Loading branch information
grafuls committed May 22, 2020
1 parent dc8b2b2 commit bdd7b7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions quads/tools/simple_table_web.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from datetime import datetime, timedelta
from quads.tools.simple_table_generator import generator
from quads.config import conf
from quads.config import conf, TEMPLATES_PATH


def main():
Expand All @@ -23,8 +23,8 @@ def main():

_static_web = os.path.join(conf["visual_web_dir"], "static")
if not os.path.exists(_static_web):
_static = os.path.join(conf.TEMPLATES_PATH, "static")
os.symlink(_static_web, _static)
_static = os.path.join(TEMPLATES_PATH, "static")
os.symlink(_static, _static_web)

for _date in dates:
gen_time = "Allocation Map for %s-%.2d" % (_date.year, _date.month)
Expand Down

0 comments on commit bdd7b7a

Please sign in to comment.