Browse Source

[FIX] base_multi_image: Correct README instructions

12.0-mig-module_prototyper_last
Pedro M. Baeza 8 years ago
committed by Vladislav Shepilov
parent
commit
973bf9e47f
  1. 7
      base_multi_image/README.rst

7
base_multi_image/README.rst

@ -61,8 +61,11 @@ To develop a module based on this one:
:meth:`~.hooks.uninstall_hook_for_submodules`, like the
``product_multi_image`` module does::
from openerp.addons.base_multi_image.hooks import \
pre_init_hook_for_submodules
try:
from openerp.addons.base_multi_image.hooks import \
pre_init_hook_for_submodules
except:
pass
def pre_init_hook(cr):

Loading…
Cancel
Save