Bladeren bron

qubes/tools: fix 'column' input formating

Include '\n' at the last line too. Otherwise the tool (depending on
version) will complain about truncated line ('line too long').
Marek Marczykowski-Górecki 7 jaren geleden
bovenliggende
commit
141128e768
1 gewijzigde bestanden met toevoegingen van 1 en 0 verwijderingen
  1. 1 0
      qubes/tools/__init__.py

+ 1 - 0
qubes/tools/__init__.py

@@ -524,6 +524,7 @@ def print_table(table):
     unit_separator = chr(31)
     cmd = ['column', '-t', '-s', unit_separator]
     text_table = '\n'.join([unit_separator.join(row) for row in table])
+    text_table += '\n'
 
     # for tests...
     if sys.stdout != sys.__stdout__: