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

stable fileview: dirty subrepos could be incorrectly labeled as "dirty and dirty"

Changeset d61d96a823d8

Parent 2ac800d3507c

by Angel Ezquerra

Changes to one file · Browse files at d61d96a823d8 Showing diff from parent 2ac800d3507c Diff from another changeset...

 
661
662
663
 
664
665
666
667
668
669
 
 
670
671
672
 
661
662
663
664
665
666
667
668
 
 
669
670
671
672
673
@@ -661,12 +661,13 @@
  subrepochange, sstatedesc = genSubrepoRevChangedDescription(sparent, srev)   out += subrepochange   else: + sstatedesc = 'dirty'   if srev != sactual:   subrepochange, sstatedesc = \   genSubrepoRevChangedDescription(srev, sactual)   out += subrepochange - if data: - sstatedesc += ' and dirty' + if data: + sstatedesc += ' and dirty'   self.contents = u''.join(out)   if not sactual:   sstatedesc = 'removed'