diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2005-04-09 15:48:30 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2005-04-09 15:48:30 +0200 |
commit | da25e1135eca3ce5f9aeb404cf63d521e51f3287 (patch) | |
tree | 37d727717989043fdc312e89b9d2163fb1b97df1 /plugins/images.py | |
parent | d09bc201703fc4f88eb0fd5e35067cab2b03c790 (diff) |
indent with spaces instead of tabs (tabs are evil)
git-svn-id: http://arthurdejong.org/svn/webcheck/webcheck@20 86f53f14-5ff3-0310-afe5-9b438ce3f40c
Diffstat (limited to 'plugins/images.py')
-rw-r--r-- | plugins/images.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/images.py b/plugins/images.py index a9c9bc1..200180f 100644 --- a/plugins/images.py +++ b/plugins/images.py @@ -37,5 +37,5 @@ title = 'Images' def generate(): print '<ol>' for url, image in Link.images.items(): - print '\t<li>%s' % make_link(url, url) + print ' <li>%s' % make_link(url, url) print '</ol>' |