aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-08-05 10:31:47 +0000
committerlloyd <[email protected]>2009-08-05 10:31:47 +0000
commitc3aeaf92c7eab7002b749017c0dd9d9541c1ee74 (patch)
tree115e320f76b13292a8eeafd4ecc976f73f89956a /configure.py
parente02788728515b46829c10b7e693b34d60356f565 (diff)
Wrap long lines
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.py b/configure.py
index 339292fd2..92bde789d 100755
--- a/configure.py
+++ b/configure.py
@@ -799,11 +799,13 @@ def choose_modules_to_use(options, modules):
maybe_dep.append(modname)
elif module.load_on in ['auto', 'asm_ok']:
if module.load_on == 'asm_ok' and not options.asm_ok:
- cannot_use_because(modname, 'uses assembly and --disable-asm set')
+ cannot_use_because(modname,
+ 'uses assembly and --disable-asm set')
else:
to_load.append(modname)
else:
- logging.warning('Unknown load_on %s in %s' % (module.load_on, modname))
+ logging.warning('Unknown load_on %s in %s' % (
+ module.load_on, modname))
dependency_failure = True