diff options
-rwxr-xr-x | configure.py | 6 |
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 |