Commit 8a64ed06 authored by Vincent Pelletier's avatar Vincent Pelletier

Actually call ERP5Site_getUpgraderSignature.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44080 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent df27695a
......@@ -59,11 +59,11 @@
# Setup skins\n
context.ERP5Site_setupUpgraderSkinSelection()\n
\n
alarm_dict = context.ERP5Site_getUpgraderSignature.get(\'alarm_dict\', {})\n
alarm_dict = context.ERP5Site_getUpgraderSignature().get(\'alarm_dict\', {})\n
if not alarm_dict.get(context.getId(), True):\n
return False\n
\n
for script_id in context.ERP5Site_getUpgraderSignature.get(\'finalize_upgrade_script_list\', []):\n
for script_id in context.ERP5Site_getUpgraderSignature().get(\'finalize_upgrade_script_list\', []):\n
if len(getattr(context, script_id)()) > 0:\n
return True\n
\n
......
580
\ No newline at end of file
581
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