##// END OF EJS Templates
revlog: drop an unused variable assignment...
Matt Harbison -
r44431:bdb35716 default
parent child Browse files
Show More
@@ -1772,10 +1772,8 b' class revlog(object):'
1772 if node == nullid:
1772 if node == nullid:
1773 return b"", {}
1773 return b"", {}
1774
1774
1775 # The text as stored inside the revlog. Might be the revision or might
1775 # ``rawtext`` is the text as stored inside the revlog. Might be the
1776 # need to be processed to retrieve the revision.
1776 # revision or might need to be processed to retrieve the revision.
1777 rawtext = None
1778
1779 rev, rawtext, validated = self._rawtext(node, rev, _df=_df)
1777 rev, rawtext, validated = self._rawtext(node, rev, _df=_df)
1780
1778
1781 if raw and validated:
1779 if raw and validated:
General Comments 0
You need to be logged in to leave comments. Login now