Skip to content
Snippets Groups Projects
Commit 6bb4c99362f0 authored by Durham Goode's avatar Durham Goode
Browse files

overlay: update changelogrevision

Upstream changed the representation of this structure, to make it not a named
tuple. So let's update to match it. The tests caught this issue.
parent 5821075b289a
No related branches found
No related tags found
No related merge requests found
......@@ -397,7 +397,15 @@
return overlaychangectx(self.repo, sha).totuple()
def changelogrevision(self, noderev):
return changelog._changelogrevision(*self.read(noderev))
values = self.read(noderev)
return changelog._changelogrevision(
manifest=values[0],
user=values[1],
date=values[2],
files=values[3],
description=values[4],
extra=values[5],
)
class overlayrepo(object):
def __init__(self, handler, commits, refs):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment