##// END OF EJS Templates
py3: slice over bytes to prevent getting ascii values...
Pulkit Goyal -
r36210:eb91ffda default
parent child Browse files
Show More
@@ -1450,7 +1450,7 b' class binhunk(object):'
1450 dec = []
1450 dec = []
1451 line = getline(lr, self.hunk)
1451 line = getline(lr, self.hunk)
1452 while len(line) > 1:
1452 while len(line) > 1:
1453 l = line[0]
1453 l = line[0:1]
1454 if l <= 'Z' and l >= 'A':
1454 if l <= 'Z' and l >= 'A':
1455 l = ord(l) - ord('A') + 1
1455 l = ord(l) - ord('A') + 1
1456 else:
1456 else:
General Comments 0
You need to be logged in to leave comments. Login now