From a054fb4c8c3c47038de476b3a00ae2099b0fa1c3 Mon Sep 17 00:00:00 2001 From: Peter Holzer Date: Wed, 13 Jul 2016 16:51:52 +0200 Subject: [PATCH] finally the correct fix... doh --- Products/PloneFormGen/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Products/PloneFormGen/__init__.py b/Products/PloneFormGen/__init__.py index 261580f1..a8742a80 100644 --- a/Products/PloneFormGen/__init__.py +++ b/Products/PloneFormGen/__init__.py @@ -18,7 +18,7 @@ # Check for Plone versions from Products.CMFPlone import __version__ -if __version__ > 4: +if __version__ < 5: raise Exception("This version of PloneFormGen requires Plone >= 5")