Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
andbag committed May 20, 2016
1 parent a736c56 commit 5ee13b5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Products/PluginIndexes/UUIDIndex/UUIDIndex.py
Expand Up @@ -93,10 +93,10 @@ def insertForwardIndexEntry(self, entry, documentId):
self._length.change(1)
elif old_docid != documentId:
logger.error("A different document with value '%s' already "
"exists in the index.'" % entry)
"exists in the index.'" % entry)

def removeForwardIndexEntry(self, entry, documentId):
"""Take the entry provided and remove any reference to documentId
"""Take the entry parovided and remove any reference to documentId
in its entry in the index.
"""
old_docid = self._index.get(entry, _marker)
Expand All @@ -116,7 +116,7 @@ def _get_object_datum(self, obj, attr):


def manage_addUUIDIndex(self, id, extra=None,
REQUEST=None, RESPONSE=None, URL3=None):
REQUEST=None, RESPONSE=None, URL3=None):
"""Add an uuid index"""
return self.manage_addIndex(id, 'UUIDIndex', extra=extra, \
REQUEST=REQUEST, RESPONSE=RESPONSE, URL1=URL3)
return self.manage_addIndex(id, 'UUIDIndex', extra=extra,
REQUEST=REQUEST, RESPONSE=RESPONSE, URL1=URL3)

0 comments on commit 5ee13b5

Please sign in to comment.