Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5_fork
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eteri
erp5_fork
Commits
9a3e6a6c
Commit
9a3e6a6c
authored
Jan 10, 2013
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resolve_path already catches exceptions internaly.
parent
cfaaa32b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
product/ZSQLCatalog/ZSQLCatalog.py
product/ZSQLCatalog/ZSQLCatalog.py
+1
-6
No files found.
product/ZSQLCatalog/ZSQLCatalog.py
View file @
9a3e6a6c
...
...
@@ -350,12 +350,7 @@ class ZCatalog(Folder, Persistent, Implicit):
if
catalog
==
0
:
self
.
uncatalog_object
(
uid
=
o
.
path
,
sql_catalog_id
=
sql_catalog_id
)
elif
catalog
==
1
:
try
:
obj
=
self
.
resolve_path
(
o
.
path
)
except
ConflictError
:
raise
except
:
obj
=
None
obj
=
self
.
resolve_path
(
o
.
path
)
if
obj
is
not
None
:
obj
.
reindexObject
(
sql_catalog_id
=
sql_catalog_id
)
else
:
...
...
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