Bug 866030 - Error "_init__() takes exactly 4 arguments" running JS test harness for opt build r=terrence

This commit is contained in:
Jon Coppeard 2013-04-26 18:50:18 +01:00
parent 22696ff6e1
commit 9e125378eb

View File

@ -61,7 +61,7 @@ class XULInfo:
# Read the values. # Read the values.
val_re = re.compile(r'(TARGET_XPCOM_ABI|OS_TARGET|MOZ_DEBUG)\s*=\s*(.*)') val_re = re.compile(r'(TARGET_XPCOM_ABI|OS_TARGET|MOZ_DEBUG)\s*=\s*(.*)')
kw = {} kw = { 'isdebug': False }
for line in open(path): for line in open(path):
m = val_re.match(line) m = val_re.match(line)
if m: if m: