##// END OF EJS Templates
python3: fix utils2
super-admin -
r4933:18a133eb default
parent child Browse files
Show More
@@ -81,7 +81,7 b' def __get_lem(extra_mapping=None):'
81 81 return [s.lower()]
82 82
83 83 for lx, t in sorted(pygments.lexers.LEXERS.items()):
84 m = map(__clean, t[-2])
84 m = list(map(__clean, t[-2]))
85 85 if m:
86 86 m = reduce(lambda x, y: x + y, m)
87 87 for ext in m:
General Comments 0
You need to be logged in to leave comments. Login now