summaryrefslogtreecommitdiffstats
path: root/bindings
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2011-11-08 01:10:22 +0100
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2011-11-08 01:10:22 +0100
commit8002502152456e2798b91d2369e95f3ec140de06 (patch)
tree90682c310b61d0bace1b9f74c3bf141e0fb25b17 /bindings
parent3c6970e0471bb8cc9f0dfc124427119d1d48db2e (diff)
downloadlasso-8002502152456e2798b91d2369e95f3ec140de06.tar.gz
lasso-8002502152456e2798b91d2369e95f3ec140de06.tar.xz
lasso-8002502152456e2798b91d2369e95f3ec140de06.zip
[bindings] fix bug introduced in last commit
Diffstat (limited to 'bindings')
-rw-r--r--bindings/bindings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/bindings.py b/bindings/bindings.py
index dc18ff4a..def735e7 100644
--- a/bindings/bindings.py
+++ b/bindings/bindings.py
@@ -569,8 +569,8 @@ def parse_headers(srcdir):
if not 'Makefile.am' in filenames:
# not a source dir
continue
- if not binding.options.idwsf and bname == 'id-wsf' or \
- bname == 'id-wsf-2.0' or bname == 'ws':
+ if not binding.options.idwsf and (bname == 'id-wsf' or \
+ bname == 'id-wsf-2.0' or bname == 'ws'):
# ignore ID-WSF
continue
makefile_am = open(os.path.join(base, 'Makefile.am')).read()