better update related to the last commit

This commit is contained in:
Miroslav Stampar
2011-03-24 20:04:20 +00:00
parent c0cc5d1dad
commit 1f1c4c0e61
2 changed files with 14 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ from lib.core.common import Backend
from lib.core.common import dataToDumpFile
from lib.core.common import dataToStdout
from lib.core.common import getUnicode
from lib.core.common import normalizeUnicode
from lib.core.common import openFile
from lib.core.common import restoreDumpMarkedChars
from lib.core.data import conf
@@ -159,7 +160,7 @@ class Dump:
if isinstance(table, (list, tuple, set)):
table = table[0]
maxlength = max(maxlength, len(getUnicode(table)))
maxlength = max(maxlength, len(normalizeUnicode(table)))
lines = "-" * (int(maxlength) + 2)
@@ -179,7 +180,7 @@ class Dump:
if isinstance(table, (list, tuple, set)):
table = table[0]
blank = " " * (maxlength - len(getUnicode(table)))
blank = " " * (maxlength - len(normalizeUnicode(table)))
self.__write("| %s%s |" % (table, blank))
self.__write("+%s+\n" % lines)