Commit 62e4fc35 authored by Vincent Pelletier's avatar Vincent Pelletier

Coding style: space required after a coma. Found py pylint.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@906 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent f117588c
......@@ -127,7 +127,7 @@ class PartitionTable(object):
row = self.partition_list[offset]
if len(row) == 0:
# Create a new row.
row = [Cell(node, state),]
row = [Cell(node, state), ]
if state != FEEDING_STATE:
self.count_dict[node] = self.count_dict.get(node, 0) + 1
self.partition_list[offset] = row
......
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