summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlogbot.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/logbot.py b/logbot.py
index 59ff280..7916bb8 100755
--- a/logbot.py
+++ b/logbot.py
@@ -344,13 +344,14 @@ class Logbot(SingleServerIRCBot):
date = strftime("%Y-%m-%d")
log_path = "%s/%s/%s.html" % (LOG_FOLDER, channel, date)
+ rel_log_path = "%s.html" % (date)
# 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)
+ os.symlink(rel_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))