Show More
@@ -221,9 +221,10 b' class changelog(baselog):' | |||
|
221 | 221 | n = self.node(nodeorrev) |
|
222 | 222 | else: |
|
223 | 223 | n = nodeorrev |
|
224 | extra = {b'branch': b'default'} | |
|
224 | 225 | # handle looking up nullid |
|
225 | 226 | if n == nullid: |
|
226 |
return hgchangelog._changelogrevision(extra= |
|
|
227 | return hgchangelog._changelogrevision(extra=extra, manifest=nullid) | |
|
227 | 228 | hn = gitutil.togitnode(n) |
|
228 | 229 | # We've got a real commit! |
|
229 | 230 | files = [ |
@@ -253,7 +254,7 b' class changelog(baselog):' | |||
|
253 | 254 | filesremoved=filesremoved, |
|
254 | 255 | description=c.message.encode('utf8'), |
|
255 | 256 | # TODO do we want to handle extra? how? |
|
256 |
extra= |
|
|
257 | extra=extra, | |
|
257 | 258 | ) |
|
258 | 259 | |
|
259 | 260 | def ancestors(self, revs, stoprev=0, inclusive=False): |
General Comments 0
You need to be logged in to leave comments.
Login now