hgext/lfs/wrapper.py
changeset 35663 a985834961f7
parent 35648 588d02d9208a
child 35799 b91bca85ba73
--- a/hgext/lfs/wrapper.py	Tue Jan 16 19:56:00 2018 -0500
+++ b/hgext/lfs/wrapper.py	Tue Jan 16 20:15:07 2018 -0500
@@ -179,6 +179,10 @@
 def filectxislfs(self):
     return _islfs(self.filelog(), self.filenode())
 
+def _updatecatformatter(orig, fm, ctx, matcher, path, decode):
+    orig(fm, ctx, matcher, path, decode)
+    fm.data(rawdata=ctx[path].rawdata())
+
 def convertsink(orig, sink):
     sink = orig(sink)
     if sink.repotype == 'hg':