Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
c94035cd
Commit
c94035cd
authored
Jan 22, 2021
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CMFActivity.ActivityTool: Fix ambiguous method name.
parent
5bf3b08f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
product/CMFActivity/Activity/SQLBase.py
product/CMFActivity/Activity/SQLBase.py
+1
-1
product/CMFActivity/ActivityTool.py
product/CMFActivity/ActivityTool.py
+2
-2
No files found.
product/CMFActivity/Activity/SQLBase.py
View file @
c94035cd
...
@@ -504,7 +504,7 @@ CREATE TABLE %s (
...
@@ -504,7 +504,7 @@ CREATE TABLE %s (
# doing such work if there is no such further iteration.
# doing such work if there is no such further iteration.
new_blocked_message_set
=
set
()
new_blocked_message_set
=
set
()
quote
=
db
.
string_literal
quote
=
db
.
string_literal
table_name_list
=
activity_tool
.
getSQL
Queue
TableNameSet
()
table_name_list
=
activity_tool
.
getSQLTableNameSet
()
for
(
for
(
dependency_name
,
dependency_name
,
dependency_value_dict
,
dependency_value_dict
,
...
...
product/CMFActivity/ActivityTool.py
View file @
c94035cd
...
@@ -1811,8 +1811,8 @@ class ActivityTool (BaseTool):
...
@@ -1811,8 +1811,8 @@ class ActivityTool (BaseTool):
REQUEST
[
'RESPONSE'
].
redirect
(
'manage_main'
)
REQUEST
[
'RESPONSE'
].
redirect
(
'manage_main'
)
return
obj
return
obj
security
.
declarePrivate
(
'getSQL
Queue
TableNameSet'
)
security
.
declarePrivate
(
'getSQLTableNameSet'
)
def
getSQL
Queue
TableNameSet
(
self
):
def
getSQLTableNameSet
(
self
):
return
[
x
.
sql_table
for
x
in
activity_dict
.
itervalues
()]
return
[
x
.
sql_table
for
x
in
activity_dict
.
itervalues
()]
# Required for tests (time shift)
# Required for tests (time shift)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment