소스 검색

Should tolerate dos format

Matthew Wang 11 년 전
부모
커밋
b87376fac9
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      cdiff.py

+ 2
- 2
cdiff.py 파일 보기

@@ -480,9 +480,9 @@ class DiffParser(object):
480 480
 
481 481
         if size >= 4 and (header[0].startswith('*** ') and
482 482
                           header[1].startswith('--- ') and
483
-                          header[2] == '***************\n' and
483
+                          header[2].rstrip() == '***************' and
484 484
                           header[3].startswith('*** ') and
485
-                          header[3].endswith(' ****\n')):
485
+                          header[3].rstrip().endswith(' ****')):
486 486
             self._type = 'context'
487 487
             return
488 488