Bug 1103956 - Remove explicit type checking from Wait class. r=atolfsen

This commit is contained in:
Dave Hunt 2014-11-24 05:44:00 +01:00
parent 2dcbb9a490
commit ac952c506b

View File

@ -125,7 +125,7 @@ class Wait(object):
except self.exceptions as e:
last_exc = sys.exc_info()
if isinstance(rv, bool) and not rv:
if not rv:
self.clock.sleep(self.interval)
continue