diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2005-04-07 22:05:37 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2005-04-07 22:05:37 +0200 |
commit | 69d183363cab127659591fa49a335ab91205f0e9 (patch) | |
tree | 3ccc41069f91a1eb447dea457ed012da5e976240 /plugins/external.py | |
parent | c3bee4829c653b29984e7e2bea9945fd0e843367 (diff) |
tabs to spaces (tabs are evil)
git-svn-id: http://arthurdejong.org/svn/webcheck/webcheck@12 86f53f14-5ff3-0310-afe5-9b438ce3f40c
Diffstat (limited to 'plugins/external.py')
-rw-r--r-- | plugins/external.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/external.py b/plugins/external.py index 44e11f3..26d1145 100644 --- a/plugins/external.py +++ b/plugins/external.py @@ -34,7 +34,7 @@ title = 'External Links' def generate(): print '<ol>' for url in linkList.keys(): - link=linkList[url] - if link.external: - print '\t<li>%s' % make_link(url,get_title(url)) + link=linkList[url] + if link.external: + print '\t<li>%s' % make_link(url,get_title(url)) print '</ol>' |