removed debug message
This commit is contained in:
parent
01c6b996f1
commit
5d29665596
4 changed files with 7 additions and 9 deletions
10
README
10
README
|
@ -4,12 +4,10 @@ INSTALL
|
|||
-------
|
||||
|
||||
calculate-lib needs the following library version installed, in order to run:
|
||||
python >= 2.7
|
||||
python-ldap >= 2.0.0
|
||||
pyxml >= 0.8
|
||||
py-smbpasswd >= 1.0
|
||||
file >= 4.26
|
||||
|
||||
python >= 3.9
|
||||
python-ldap >= 3.3.0
|
||||
lxml >= 4.6.3
|
||||
|
||||
To install calculate-lib , just execute the install script 'setup.py'.
|
||||
Example:
|
||||
|
||||
|
|
|
@ -6051,7 +6051,7 @@ gettext -d cl_template "$*"
|
|||
"calculate.%s.variables" % self.objVar.defaultModule)
|
||||
except (ImportError, AttributeError) as e:
|
||||
#DEBUG
|
||||
print(e)
|
||||
# print(e)
|
||||
return []
|
||||
|
||||
if not optFile:
|
||||
|
|
|
@ -120,4 +120,4 @@ class kernel(TemplateFormat):
|
|||
return '%s=%s\n' % (key, value)
|
||||
|
||||
return "".join([getline(key, value)
|
||||
for key, value in self.doc.body.items()])
|
||||
for key, value in self.doc.body.items()])
|
||||
|
|
|
@ -244,7 +244,7 @@ class tableReport():
|
|||
else:
|
||||
align = "^"
|
||||
offset = ""
|
||||
_print((u"%s{0:%s%d}" % (offset, align, width)).format(txt))
|
||||
_print(("%s{0:%s%d}" % (offset, align, width)).format(txt))
|
||||
if i < last_col:
|
||||
self.line_printer(char)
|
||||
self.line_printer(char[:-self.colSpan + 1])
|
||||
|
|
Loading…
Add table
Reference in a new issue