Commit c94035cd authored by Vincent Pelletier's avatar Vincent Pelletier

CMFActivity.ActivityTool: Fix ambiguous method name.

parent 5bf3b08f
Pipeline #13269 failed with stage
in 0 seconds
......@@ -504,7 +504,7 @@ CREATE TABLE %s (
# doing such work if there is no such further iteration.
new_blocked_message_set = set()
quote = db.string_literal
table_name_list = activity_tool.getSQLQueueTableNameSet()
table_name_list = activity_tool.getSQLTableNameSet()
for (
dependency_name,
dependency_value_dict,
......
......@@ -1811,8 +1811,8 @@ class ActivityTool (BaseTool):
REQUEST['RESPONSE'].redirect( 'manage_main' )
return obj
security.declarePrivate('getSQLQueueTableNameSet')
def getSQLQueueTableNameSet(self):
security.declarePrivate('getSQLTableNameSet')
def getSQLTableNameSet(self):
return [x.sql_table for x in activity_dict.itervalues()]
# Required for tests (time shift)
......
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