summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2015-03-14 12:16:28 -0400
committerThibaut Horel <thibaut.horel@gmail.com>2015-03-14 12:16:28 -0400
commit9c738d00ba9d97de74d5a6665b5dfbbaaaab9eb4 (patch)
tree2ce810a34abea4e27068f8f28b10d2584c035f7d
parentb0cafbebc9c7992256526a9bfda7345b83408422 (diff)
downloadreading_group-9c738d00ba9d97de74d5a6665b5dfbbaaaab9eb4.tar.gz
Better updated date format
-rw-r--r--build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.py b/build.py
index be367c2..b01c2b9 100644
--- a/build.py
+++ b/build.py
@@ -49,7 +49,7 @@ def clean(session):
def build(sessions, refs, keys):
template = Template(open("index.jinja").read().decode("utf8"))
- date = datetime.now().strftime("%a, %b. %d at %H:%M")
+ date = datetime.now().strftime("%a, %b. %d %Y at %I:%M%p")
with open("index.html", "w") as fh:
fh.write(template.render(sessions=sessions, refs=refs, keys=keys,
date=date).encode("utf8"))