From 8002502152456e2798b91d2369e95f3ec140de06 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 8 Nov 2011 01:10:22 +0100 Subject: [PATCH] [bindings] fix bug introduced in last commit --- bindings/bindings.py | 4 ++-- 1 file 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()