diff options
Diffstat (limited to 'blogthon.cgi')
-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() |