##// END OF EJS Templates
crecord: always return a str from uihunk.__repr__...
Gregory Szorc -
r41462:5c73441a default
parent child Browse files
Show More
@@ -487,7 +487,7 b' class uihunk(patchnode):'
487 return getattr(self._hunk, name)
487 return getattr(self._hunk, name)
488
488
489 def __repr__(self):
489 def __repr__(self):
490 return '<hunk %r@%d>' % (self.filename(), self.fromline)
490 return r'<hunk %r@%d>' % (self.filename(), self.fromline)
491
491
492 def filterpatch(ui, chunks, chunkselector, operation=None):
492 def filterpatch(ui, chunks, chunkselector, operation=None):
493 """interactively filter patch chunks into applied-only chunks"""
493 """interactively filter patch chunks into applied-only chunks"""
General Comments 0
You need to be logged in to leave comments. Login now