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.
1 parent d6c097e commit 891ac51Copy full SHA for 891ac51
gitdb/util.py
@@ -72,7 +72,7 @@ def _retry(func, *args, **kwargs):
72
# Wrapper around functions, that are problematic on "Windows". Sometimes
73
# the OS or someone else has still a handle to the file
74
if sys.platform == "win32":
75
- for _ in xrange(10):
+ for _ in range(10):
76
try:
77
return func(*args, **kwargs)
78
except Exception:
0 commit comments