##// END OF EJS Templates
fix strikethrough issues on `No new line at end of file`
marcink -
r2566:d097d4bb beta
parent child Browse files
Show More
@@ -401,7 +401,7 b' class DiffProcessor(object):'
401 try:
401 try:
402 while 1:
402 while 1:
403 line = lineiter.next()
403 line = lineiter.next()
404 if line['action'] != 'unmod':
404 if line['action'] not in ['unmod', 'context']:
405 nextline = lineiter.next()
405 nextline = lineiter.next()
406 if nextline['action'] in ['unmod', 'context'] or \
406 if nextline['action'] in ['unmod', 'context'] or \
407 nextline['action'] == line['action']:
407 nextline['action'] == line['action']:
General Comments 0
You need to be logged in to leave comments. Login now