Commit 7e186442 authored by Julien Muchembled's avatar Julien Muchembled

neoctl: make cell padding consistent when displaying the partition table

parent d3c22487
......@@ -66,8 +66,8 @@ class TerminalNeoCTL(object):
asNode = staticmethod(uuid_int)
def formatRowList(self, row_list):
return '\n'.join('%03d | %s' % (offset,
''.join('%s - %s |' % (uuid_str(uuid), state)
return '\n'.join('%03d |%s' % (offset,
''.join(' %s - %s |' % (uuid_str(uuid), state)
for (uuid, state) in cell_list))
for (offset, cell_list) in row_list)
......
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