summaryrefslogtreecommitdiff
path: root/util/html.py
diff options
context:
space:
mode:
authorjavl <mail@jaspervanloenen.com>2017-12-18 17:52:42 +0100
committerjavl <mail@jaspervanloenen.com>2017-12-18 17:52:42 +0100
commit9cf2a95d76845e151d24b86a953a5fdc76a9aa7d (patch)
tree50221563418c411888f8ec0df6f91483e2d65609 /util/html.py
parente9e6ef6b022954953603ee8d872bce677be7a6c3 (diff)
Fixes webpage autorefresh and lowers default refresh rate
Diffstat (limited to 'util/html.py')
-rwxr-xr-xutil/html.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/html.py b/util/html.py
index a80aa59..71c48ad 100755
--- a/util/html.py
+++ b/util/html.py
@@ -4,7 +4,7 @@ import os
class HTML:
- def __init__(self, web_dir, title, reflesh=0):
+ def __init__(self, web_dir, title, refresh=0):
self.title = title
self.web_dir = web_dir
self.img_dir = os.path.join(self.web_dir, 'images')
@@ -14,9 +14,9 @@ class HTML:
os.makedirs(self.img_dir)
self.doc = dominate.document(title=title)
- if reflesh > 0:
+ if refresh > 0:
with self.doc.head:
- meta(http_equiv="reflesh", content=str(reflesh))
+ meta(http_equiv="refresh", content=str(refresh))
def get_image_dir(self):
return self.img_dir