24 lines
656 B
Diff
24 lines
656 B
Diff
--- nototools-9c4375f07c9adc00c700c5d252df6a25d7425870.orig/nototools/tool_utils.py
|
|
+++ nototools-9c4375f07c9adc00c700c5d252df6a25d7425870/nototools/tool_utils.py
|
|
@@ -446,7 +446,7 @@ def parse_int_ranges(
|
|
is_range = False
|
|
start = 0
|
|
len_limit = -1
|
|
- for i in xrange(len(r)):
|
|
+ for i in range(len(r)):
|
|
cp = r[i]
|
|
if cp not in stops:
|
|
continue
|
|
@@ -613,7 +613,7 @@ def collect_paths(dirs, files):
|
|
|
|
paths = []
|
|
if dirs:
|
|
- for i in xrange(len(dirs)):
|
|
+ for i in range(len(dirs)):
|
|
# special case '[noto]' to include all noto font dirs
|
|
if dirs[i] == '[noto]':
|
|
dirs[i] = None
|
|
--
|
|
2.21.0
|
|
|