Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2020-01-08 20:27:59 +0100
committerErich Eckner <git@eckner.net>2020-01-08 20:30:53 +0100
commitdd0f57248d6889c19d841ededa78c6574c862fb8 (patch)
tree5a5d94ea8c4459f777e03796c22c199c9a0156e7
parentd11ca4ffc9ec5a896d974191dd449eeb9820c17c (diff)
logbot.py: use relative path for latest.html symlink - so it works on the mirrors, too
-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))