Commit b7e0ec7f authored by Vincent Pelletier's avatar Vincent Pelletier Committed by Julien Muchembled

client: avoid (harmless) variable shadowing

parent a4f34eaa
......@@ -87,7 +87,7 @@ class ClientCache(object):
" max_size=%s)>") % (
self.__class__.__name__, self._history_size,
len(self._oid_dict), self._size, self._time,
[sum(1 for x in self._iterQueue(x))
[sum(1 for _ in self._iterQueue(x))
for x in xrange(len(self._queue_list))],
self._life_time, self._max_history_size, self._max_size)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment