]> git.phdru.name Git - phdru.name/phdru.name.git/commitdiff
Fixed a bug in baseURL - the directory must be ended with a slash for urljoin().
authorOleg Broytman <phd@phdru.name>
Sun, 1 Oct 2006 09:55:06 +0000 (09:55 +0000)
committerOleg Broytman <phd@phdru.name>
Sun, 1 Oct 2006 09:55:06 +0000 (09:55 +0000)
git-svn-id: file:///home/phd/archive/SVN/phdru.name/scripts@58 7bb0bf08-9e0d-0410-b083-99cee3bf18b8

reindex_blog.py

index a4667b01c56edd9901d9fda68f383c80b3b0d647..b422784b960c85c9721b3eec07fa57f81d4d5057 100755 (executable)
@@ -389,7 +389,10 @@ from atom_10 import atom_10
 from rss_20 import rss_20
 from news import NewsItem
 
-baseURL = "http://phd.pp.ru/" + blog_root
+if blog_root:
+   baseURL = "http://phd.pp.ru/%s/" % blog_root
+else:
+   baseURL = "http://phd.pp.ru/"
 
 items = []
 for item in tuple(reversed(all_titles_tags))[:10]: