diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-10-30 14:56:45 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-10-30 14:56:45 +0100 |
commit | 7cb32d56d553c7c6883ad88aa56a236717618a00 (patch) | |
tree | ae0871b308a18f1ade14f114de9aaa4d88a36d8c | |
parent | b56bc33a16f4f3f53ed3c9dfd9eb689548fdc9cb (diff) |
Bugfix
-rwxr-xr-x | blogthon.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index 92fa98b..56d3da6 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -332,7 +332,7 @@ else: print ' <div class="pages_list">' print ' <ul class="pages_list">' for staticpage in staticpages_list: - f = open(staticpages_dir + staticpage, 'r') + f = open(staticpage, 'r') for line in f: if line.split(':', 1)[0] == 'extern_link': link = line.split(':', 1)[1].strip() |