Randomness tweak

This commit is contained in:
Dan Williams
2007-04-12 00:14:29 -04:00
parent 3f2f609c4a
commit 3d3dd23390
+1 -1
View File
@@ -432,7 +432,7 @@ class TestOwner(GenericOwner):
f.close()
def _update_something(self):
it = random.randint(0, 3)
it = random.randint(0, 10000) % 4
if it == 0:
self.props.icon = _get_random_image()
elif it == 1: