Commit afdd2d84 authored by Kevin Deldycke's avatar Kevin Deldycke

Sorry, bad parenthesis


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@5302 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 2fe18740
......@@ -60,9 +60,9 @@ python_version = sys.version.split(' ')[0].split('.')
python_version = int(python_version[0]) * 100 +\
int(python_version[1])
zope_version = App.version_txt.getZopeVersion()
zope_version = int(zope_version(0)) * 100 * 100 +\
int(zope_version(1)) * 100 +\
int(zope_version(2))
zope_version = int(zope_version[0]) * 100 * 100 +\
int(zope_version[1]) * 100 +\
int(zope_version[2])
if python_version >= 204 and zope_version >= 20708:
PDFTK_EXECUTABLE = "pdftk"
......
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