diff options
author | somov <somov@yandex-team.com> | 2023-09-07 21:00:35 +0300 |
---|---|---|
committer | somov <somov@yandex-team.com> | 2023-09-07 21:20:52 +0300 |
commit | 2ba44121fc9a2ddc8f703e7c49c745424717e31e (patch) | |
tree | 8a15028da069d7057860902c5aaae62d10b50ddc /library/python/windows | |
parent | d97a6e6becbc500ff7d56fa3ccf5ba0382091529 (diff) | |
download | ydb-2ba44121fc9a2ddc8f703e7c49c745424717e31e.tar.gz |
No xrange in python3
Diffstat (limited to 'library/python/windows')
-rw-r--r-- | library/python/windows/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/windows/__init__.py b/library/python/windows/__init__.py index 62861b3309..eb520a8d2d 100644 --- a/library/python/windows/__init__.py +++ b/library/python/windows/__init__.py @@ -143,7 +143,7 @@ if on_win(): winerrors = (winerrors,) ei = None - for t in xrange(tries): + for t in range(tries): if t: logger.debug('Diehard [errs %s]: try #%d in %s', ','.join(str(x) for x in winerrors), t, f) try: |