Commit a2920425 authored by Rafael Monnerat's avatar Rafael Monnerat

Fix import.



git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@33825 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0b73df79
...@@ -17,7 +17,7 @@ import os, sys ...@@ -17,7 +17,7 @@ import os, sys
from string import Template from string import Template
import zc.buildout import zc.buildout
import plone.recipe.zope2instance import plone.recipe.zope2instance
from erp5.recipe.mysqldatabase import Recipe as mysqlrecipe import erp5.recipe.mysqldatabase
class WithMinusTemplate(Template): class WithMinusTemplate(Template):
idpattern = '[_a-z][-_a-z0-9]*' idpattern = '[_a-z][-_a-z0-9]*'
...@@ -60,7 +60,7 @@ class Recipe(plone.recipe.zope2instance.Recipe): ...@@ -60,7 +60,7 @@ class Recipe(plone.recipe.zope2instance.Recipe):
if options.get('mysql_create_database', 'false').lower() == 'true': if options.get('mysql_create_database', 'false').lower() == 'true':
# Use mysqldatabase recipe for Create the mysql database. # Use mysqldatabase recipe for Create the mysql database.
mysqlrecipe(self.buildout, self.name, self.options).install() erp5.recipe.mysqldatabase.Recipe(self.buildout, self.name, self.options).install()
# What follows is a bit of a hack because the instance-setup mechanism # What follows is a bit of a hack because the instance-setup mechanism
......
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