[pypy-commit] pypy default: a missing space

fijal noreply at buildbot.pypy.org
Sat Jan 28 12:48:00 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r51905:534391d69807
Date: 2012-01-28 13:47 +0200
http://bitbucket.org/pypy/pypy/changeset/534391d69807/

Log:	a missing space

diff --git a/pypy/module/micronumpy/tool/numready/main.py b/pypy/module/micronumpy/tool/numready/main.py
--- a/pypy/module/micronumpy/tool/numready/main.py
+++ b/pypy/module/micronumpy/tool/numready/main.py
@@ -95,7 +95,7 @@
     pypy_items = find_numpy_items(argv[1], "numpypy")
     all_items = []
 
-    msg = "{:d}/{:d} names".format(len(pypy_items), len(cpy_items))
+    msg = "{:d}/{:d} names".format(len(pypy_items), len(cpy_items)) + " "
     msg += ", ".join(
         "{:d}/{:d} {} attributes".format(
             len(pypy_items[name].subitems), len(cpy_items[name].subitems), name


More information about the pypy-commit mailing list