summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/build_scripts.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/distutils/command/build_scripts.py')
-rw-r--r--numpy/distutils/command/build_scripts.py4
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