diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2009-05-26 22:24:14 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2009-05-26 22:24:14 +0200 |
commit | 0e0c450367d6f1047ff10136d29d395fd6e44357 (patch) | |
tree | 894d77ebded97cf5852fbc1b39068be13a227fd3 /plugins/external.py | |
parent | 97d372c537e48f2138b4e76545dfc8c5e403ae88 (diff) |
add FIXME note
git-svn-id: http://arthurdejong.org/svn/webcheck/webcheck@398 86f53f14-5ff3-0310-afe5-9b438ce3f40c
Diffstat (limited to 'plugins/external.py')
-rw-r--r-- | plugins/external.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/external.py b/plugins/external.py index 28b41eb..581e65b 100644 --- a/plugins/external.py +++ b/plugins/external.py @@ -37,6 +37,7 @@ def generate(site): for x in site.linkMap.values() if not x.isinternal ] # sort list + # FIXME: use sort(key=....) (adds dependency on python>=2.4) links.sort(lambda a, b: cmp(a.url, b.url)) # present results fp = plugins.open_html(plugins.external, site) |