summaryrefslogtreecommitdiffstats
path: root/website
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-08-05 14:53:29 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-08-05 14:53:29 +0000
commit207891ff2946db888c80b15f77e7cce15bfcc006 (patch)
treec1bc0b3b20525c1b842973c2602f61bdec50c919 /website
parentf83d4bd9f8227da65dbc350b3d2d390b7b0a2299 (diff)
downloadlasso-207891ff2946db888c80b15f77e7cce15bfcc006.tar.gz
lasso-207891ff2946db888c80b15f77e7cce15bfcc006.tar.xz
lasso-207891ff2946db888c80b15f77e7cce15bfcc006.zip
* Fix blanks mismatch (space in *.c and *h files or tabs in *.py files) and formatting
Diffstat (limited to 'website')
-rw-r--r--website/convert-to-static.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/website/convert-to-static.py b/website/convert-to-static.py
index 6e0bdf62..4aaadcd1 100644
--- a/website/convert-to-static.py
+++ b/website/convert-to-static.py
@@ -260,8 +260,8 @@ for base, dirs, files in os.walk('web'):
continue
if ext not in ('.html', '.xml') or filename.startswith('doap.') or 'api-reference' in src_file:
- if os.path.exists(dst_file):
- os.unlink(dst_file)
+ if os.path.exists(dst_file):
+ os.unlink(dst_file)
os.link(src_file, dst_file)
continue