Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
andbag committed Apr 4, 2018
1 parent 3852785 commit c1262be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Products/PluginIndexes/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ def stats(self):
return stats

def __str__(self):
return "<RequestCache %s items (hits: %s, misses: %s, sets: %s)>" % \
(len(self), self._hits, self._misses, self._sets)
return '<RequestCache {0} items (hits: {1}, misses: {2}, \
sets: {3})>'.format(len(self), self._hits, self._misses, self._sets)

0 comments on commit c1262be

Please sign in to comment.