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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
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 (
# doing such work if there is no such further iteration.
new_blocked_message_set
=
set
()
quote
=
db
.
string_literal
table_name_list
=
activity_tool
.
getSQL
Queue
TableNameSet
()
table_name_list
=
activity_tool
.
getSQLTableNameSet
()
for
(
dependency_name
,
dependency_value_dict
,
...
...
product/CMFActivity/ActivityTool.py
View file @
c94035cd
...
...
@@ -1811,8 +1811,8 @@ class ActivityTool (BaseTool):
REQUEST
[
'RESPONSE'
].
redirect
(
'manage_main'
)
return
obj
security
.
declarePrivate
(
'getSQL
Queue
TableNameSet'
)
def
getSQL
Queue
TableNameSet
(
self
):
security
.
declarePrivate
(
'getSQLTableNameSet'
)
def
getSQLTableNameSet
(
self
):
return
[
x
.
sql_table
for
x
in
activity_dict
.
itervalues
()]
# 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