diff options
author | cookedm <cookedm@localhost> | 2006-02-02 03:28:25 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-02-02 03:28:25 +0000 |
commit | 9e5252bd45403ddd97252d83ede5eeb6b72e0767 (patch) | |
tree | 5921cfdd13d93e22fe21f79469f355dfb2376021 /numpy/distutils/command/build_scripts.py | |
parent | 91473bf148643b2412e595f0897c86076ecae1d2 (diff) | |
download | numpy-9e5252bd45403ddd97252d83ede5eeb6b72e0767.tar.gz |
Remove unused imports
Diffstat (limited to 'numpy/distutils/command/build_scripts.py')
-rw-r--r-- | numpy/distutils/command/build_scripts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/command/build_scripts.py b/numpy/distutils/command/build_scripts.py index c3f3931c3..1217a2c1f 100644 --- a/numpy/distutils/command/build_scripts.py +++ b/numpy/distutils/command/build_scripts.py @@ -25,10 +25,10 @@ class build_scripts(old_build_scripts): if not script: continue if is_string(script): - log.info(" adding '%s' to scripts" % (script)) + log.info(" adding '%s' to scripts" % (script,)) new_scripts.append(script) else: - [log.info(" adding '%s' to scripts" % (s)) for s in script] + [log.info(" adding '%s' to scripts" % (s,)) for s in script] new_scripts.extend(list(script)) return new_scripts |