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

changeset: fix display of max diff size warning

Without this fix, no diffs were shown to the user (as expected), but no indication
was given as to why.

Changeset ee1684dad60d

Parent 433ddbe1df9d

by Steve Borho

Changes to one file · Browse files at ee1684dad60d Showing diff from parent 433ddbe1df9d Diff from another changeset...

 
197
198
199
200
 
201
202
203
 
197
198
199
 
200
201
202
203
@@ -197,7 +197,7 @@
  except LookupError:   fctx = None   if fctx and fctx.size() > getmaxdiffsize(self.ui): - lines = ['diff', + lines = ['diff', '', '',   _(' %s is larger than the specified max diff size') % wfile]   else:   lines = []