Skip to content

Commit

Permalink
Simplified invocation syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
hathawsh committed Jul 31, 2002
1 parent 8bdd088 commit 8d6338a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ZCatalog.py
Expand Up @@ -592,7 +592,7 @@ def searchResults(self, REQUEST=None, used=None, **kw):
arguments.
"""

return apply(self._catalog.searchResults, (REQUEST, used), kw)
return self._catalog.searchResults(REQUEST, used, **kw)

__call__=searchResults

Expand Down

0 comments on commit 8d6338a

Please sign in to comment.