We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 35d25a3 + f010be2 commit 25262c8Copy full SHA for 25262c8
app/utility/base_world.py
@@ -60,7 +60,7 @@ def jitter(fraction):
60
i = fraction.split('/')
61
min, max = int(i[0]), int(i[1])
62
if min > max:
63
- logging.warn(f'Jitter range max value (max={max}) less than min value (min={min}). Using min={max} and max={min}.')
+ logging.warning(f'Jitter range max value (max={max}) less than min value (min={min}). Using min={max} and max={min}.')
64
min, max = max, min
65
return randint(min, max)
66
0 commit comments