Commit 16b30efd authored by Jérome Perrin's avatar Jérome Perrin

This script was not working with new style actions

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@30107 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c04e1526
...@@ -80,8 +80,9 @@ for ai in print_action_list:\n ...@@ -80,8 +80,9 @@ for ai in print_action_list:\n
ai_copy = ai.copy()\n ai_copy = ai.copy()\n
# this is quite low level. It may require to be done from file system code in\n # this is quite low level. It may require to be done from file system code in\n
# the future.\n # the future.\n
ai_copy[\'original_url\'] = ai_copy[\'url\']\n ai_copy.update(dict(\n
ai_copy[\'url\'] = addDialogIfNeeded(ai_copy[\'url\'])\n original_url=ai_copy[\'url\'],\n
url=addDialogIfNeeded(ai_copy[\'url\'])))\n
new_print_action_list.append( ai_copy )\n new_print_action_list.append( ai_copy )\n
\n \n
return new_print_action_list\n return new_print_action_list\n
...@@ -133,7 +134,7 @@ return new_print_action_list\n ...@@ -133,7 +134,7 @@ return new_print_action_list\n
<string>_getiter_</string> <string>_getiter_</string>
<string>ai</string> <string>ai</string>
<string>ai_copy</string> <string>ai_copy</string>
<string>_write_</string> <string>dict</string>
</tuple> </tuple>
</value> </value>
</item> </item>
......
848 849
\ No newline at end of file \ No newline at end of file
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