summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlogbot.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/logbot.py b/logbot.py
index 1178008..23067dd 100755
--- a/logbot.py
+++ b/logbot.py
@@ -347,6 +347,9 @@ class Logbot(SingleServerIRCBot):
# Create the log date index if it doesnt exist
if not os.path.exists(log_path):
write_string(log_path, html_header.replace("%title%", "%s | Logs for %s" % (channel_title, date)))
+ if os.path.islink("%s/latest.html" % chan_path):
+ os.unlink("%s/latest.html" % chan_path)
+ os.symlink(log_path, "%s/latest.html" % chan_path)
# Append date log
append_line("%s/index.html" % chan_path, '<a href="%s.html">%s</a>' % (date, date))