Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.1, 2.0.2, and 2.0.3

stable fileview: treat clean files the same as unknown, show contents (fixes #268)

Changeset 1ffc12ec41cf

Parent 1c627aeb3590

by Steve Borho

Changes to one file · Browse files at 1ffc12ec41cf Showing diff from parent 1c627aeb3590 Diff from another changeset...

 
629
630
631
632
 
633
634
635
 
629
630
631
 
632
633
634
635
@@ -629,7 +629,7 @@
  self.flabel += _(' <i>(was added, now missing)</i>')   return   - if status in ('I', '?'): + if status in ('I', '?', 'C'):   try:   data = open(repo.wjoin(wfile), 'r').read()   if '\0' in data: