##// 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 401 try:
402 402 while 1:
403 403 line = lineiter.next()
404 if line['action'] != 'unmod':
404 if line['action'] not in ['unmod', 'context']:
405 405 nextline = lineiter.next()
406 406 if nextline['action'] in ['unmod', 'context'] or \
407 407 nextline['action'] == line['action']:
General Comments 0
You need to be logged in to leave comments. Login now