Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

Merge with stable

Changeset cccb9aaa6d4e

Parents f27379e5794e

Parents 50542e82b084

by Steve Borho

Changes to one file · Browse files at cccb9aaa6d4e Showing diff from parent f27379e5794e 50542e82b084 Diff from another changeset...

 
592
593
594
595
 
596
597
598
599
 
 
 
600
601
 
602
603
604
 
592
593
594
 
595
596
 
 
 
597
598
599
600
 
601
602
603
604
@@ -592,13 +592,13 @@
  rev = fctx.linkrev()   # If the source path matches the current path, don't bother including it.   if curpath and curpath == fctx.path(): - source = '' + source = u''   else: - source = '(%s)' % fctx.path() - date = age(fctx.date()) - l = tounicode(fctx.description()).replace('\0', '').splitlines() + source = u'(%s)' % tounicode(fctx.path()) + date = tounicode(age(fctx.date())) + l = tounicode(fctx.description()).splitlines()   summary = l and l[0] or '' - return '%s@%s%s:%s "%s"' % (author, rev, source, date, summary) + return u'%s@%s%s:%s "%s"' % (author, rev, source, date, summary)    def validate_synch_path(path, repo):   '''