Commit 80833942 authored by Andreas Zeidler's avatar Andreas Zeidler

corrected required version number of docutils

parent 3253e837
...@@ -12,13 +12,13 @@ ...@@ -12,13 +12,13 @@
############################################################################## ##############################################################################
"""Wrapper to integrate reStructuredText into Zope """Wrapper to integrate reStructuredText into Zope
This implementation requires docutils 0.3.4+ from http://docutils.sf.net/ This implementation requires docutils 0.4.0+ from http://docutils.sf.net/
""" """
try: try:
import docutils import docutils
except ImportError: except ImportError:
raise ImportError, 'Please install docutils 0.3.3+ from http://docutils.sourceforge.net/#download.' raise ImportError, 'Please install docutils 0.4.0+ from http://docutils.sourceforge.net/#download.'
version = docutils.__version__.split('.') version = docutils.__version__.split('.')
if not (version >= ['0', '4', '0'] or version >= ['0', '4']): if not (version >= ['0', '4', '0'] or version >= ['0', '4']):
......
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