Skip to content

Commit

Permalink
fix: wiki assignments title
Browse files Browse the repository at this point in the history
Change-Id: Ia920f0f9ea0f2854662ccc27114f04bc93fabb32
  • Loading branch information
grafuls committed Nov 26, 2019
1 parent 95f3e99 commit 86acf15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quads/templates/simple_table
Expand Up @@ -21,7 +21,7 @@
</head>
<body>
{% if gentime %}
<b>{{ gentime }}</b><br>
<b>{{ gentime }}<br>(Hover cursor over squares for details on allocation)</b><br>
{% endif %}
<b>Percentage Utilized: {{ utilization }}%</b><br>
<br>
Expand Down
2 changes: 1 addition & 1 deletion quads/tools/simple_table_web.py
Expand Up @@ -22,7 +22,7 @@ def main():
os.makedirs(conf["visual_web_dir"])

for _date in dates:
gen_time = "Allocation Map for %s-%.2d<br>(Hover cursor over squares for details on allocation)" % (
gen_time = "Allocation Map for %s-%.2d" % (
_date.year, _date.month)
content = generator(None, calendar.mdays[_date.month], _date.month, _date.year, gen_time)
file_path = os.path.join(conf["visual_web_dir"], "%s-%.2d.html" % (_date.year, _date.month))
Expand Down

0 comments on commit 86acf15

Please sign in to comment.