xrange not supported in py3

Change-Id: Id25221518eaca7c020aaff0f34bb612b31dce373
This commit is contained in:
Eyal 2017-11-12 14:37:46 +02:00
parent a48dbc9d54
commit b3e72eae7f
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class EvaluatorManager(EvaluatorBase):
def reload_all_workers(self, enabled=True):
self.stop_all_workers()
for i in xrange(self._workers_num):
for i in range(self._workers_num):
self._add_worker(enabled=enabled)