Commit 4fd9d66c authored by Vincent Pelletier's avatar Vincent Pelletier

Coma must be followed by a space. Found by pylint.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@927 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 273daa81
......@@ -285,7 +285,7 @@ if __name__ == '__main__':
for i in xrange(10):
assert cache.get(i) == str(i), '%d does not exist' % i
for i in xrange(10,500):
for i in xrange(10, 500):
cache[i] = str(i)
for i in xrange(10):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment