Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Kirill Smelkov
Zope
Commits
6ac74a5d
Commit
6ac74a5d
authored
Jul 25, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
keyForDocument was replaced by documentToKeyMap.
parent
b9e42f6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/Products/ZCatalog/Catalog.py
src/Products/ZCatalog/Catalog.py
+3
-3
No files found.
src/Products/ZCatalog/Catalog.py
View file @
6ac74a5d
...
...
@@ -756,10 +756,10 @@ class Catalog(Persistent, Acquisition.Implicit, ExtensionClass.Base):
if
sort_index
is
None
:
raise
CatalogError
,
'Unknown sort_on index (%s)'
%
sort_index_name
else
:
if
not
hasattr
(
sort_index
,
'
keyForDocument
'
):
if
not
hasattr
(
sort_index
,
'
documentToKeyMap
'
):
raise
CatalogError
(
'The index chosen for sort_on (%s) is not capable of
being
'
' used as a sort index.'
%
sort_index_name
'The index chosen for sort_on (%s) is not capable of '
'
being
used as a sort index.'
%
sort_index_name
)
return
sort_index
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