summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcotton1998-11-09 16:56:34 +0000
committercotton1998-11-09 16:56:34 +0000
commit3b9ad468b6027bfef1ebe9db636004b1e391ffcd (patch)
treeaf1c59c3b2153e502e8429aedcb705f2c92ecea0
parenta9d1e284c41409de9ea25164ada8a16c7ef1afc3 (diff)
downloadmailman-3b9ad468b6027bfef1ebe9db636004b1e391ffcd.tar.gz
mailman-3b9ad468b6027bfef1ebe9db636004b1e391ffcd.tar.zst
mailman-3b9ad468b6027bfef1ebe9db636004b1e391ffcd.zip
made it use %s/%s instead of os.path.join for url.
scott
-rw-r--r--Mailman/Cgi/archives.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Cgi/archives.py b/Mailman/Cgi/archives.py
index d96d6791d..88df821bc 100644
--- a/Mailman/Cgi/archives.py
+++ b/Mailman/Cgi/archives.py
@@ -69,7 +69,7 @@ def GetArchiveList(list):
if not len(dir_listing):
return "<h3><em>No archives are currently available.</em></h3>"
for dir in dir_listing:
- link = htmlformat.Link(os.path.join(list._base_archive_url, dir),
+ link = htmlformat.Link("%s/%s" % (list._base_archive_url, dir),
"Volume %s" % dir[7:])
archive_list.AddItem(link)