##// END OF EJS Templates
context: remove unneeded alias of diffopts
Yuya Nishihara -
r38601:7f4bf811 default
parent child Browse files
Show More
@@ -302,10 +302,8 b' class basectx(object):'
302 ctx2 = self.p1()
302 ctx2 = self.p1()
303 if ctx2 is not None:
303 if ctx2 is not None:
304 ctx2 = self._repo[ctx2]
304 ctx2 = self._repo[ctx2]
305
306 diffopts = opts
307 return patch.diff(self._repo, ctx2, self, match=match, changes=changes,
305 return patch.diff(self._repo, ctx2, self, match=match, changes=changes,
308 opts=diffopts, losedatafn=losedatafn, prefix=prefix,
306 opts=opts, losedatafn=losedatafn, prefix=prefix,
309 relroot=relroot, copy=copy,
307 relroot=relroot, copy=copy,
310 hunksfilterfn=hunksfilterfn)
308 hunksfilterfn=hunksfilterfn)
311
309
General Comments 0
You need to be logged in to leave comments. Login now