Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

status: introduce nobinary mdiff option

assuming my change to mercurial gets picked up, this fixes #39

Changeset 3b85bf9f207f

Parent 6f82ad35dd59

by Steve Borho

Changes to one file · Browse files at 3b85bf9f207f Showing diff from parent 6f82ad35dd59 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
953
954
955
956
 
 
957
958
959
 
953
954
955
 
956
957
958
959
960
@@ -953,7 +953,8 @@
  if len(files) != 0:   wfiles = [self.repo.wjoin(x) for x in files]   matcher = cmdutil.match(self.repo, wfiles, self.opts) - diffopts = mdiff.diffopts(git=True, nodates=True) + diffopts = mdiff.diffopts(git=True, nodates=True, + nobinary=True)   for s in patch.diff(self.repo, self._node1, self._node2,   match=matcher, opts=diffopts):   difftext.writelines(s.splitlines(True))