##// END OF EJS Templates
minirst: avoid shadowing a variable in a list comprehension
Augie Fackler -
r30390:bff77a69 default
parent child Browse files
Show More
@@ -697,7 +697,7 b' def format(text, width=80, indent=0, kee'
697 697 if collapse:
698 698 synthetic.reverse()
699 699 for s in synthetic:
700 path = [blocks[i]['lines'][0] for i in s]
700 path = [blocks[syn]['lines'][0] for syn in s]
701 701 real = s[-1] + 2
702 702 realline = blocks[real]['lines']
703 703 realline[0] = ('"%s"' %
General Comments 0
You need to be logged in to leave comments. Login now