##// END OF EJS Templates
drawdag: correctly pass repo to super constructor...
Martin von Zweigbergk -
r39473:9a813e4c default
parent child Browse files
Show More
@@ -288,8 +288,7 b' class simplecommitctx(context.committabl'
288 'date': b'0 0',
288 'date': b'0 0',
289 'extra': {b'branch': b'default'},
289 'extra': {b'branch': b'default'},
290 }
290 }
291 super(simplecommitctx, self).__init__(self, name, **opts)
291 super(simplecommitctx, self).__init__(repo, name, **opts)
292 self._repo = repo
293 self._added = added
292 self._added = added
294 self._parents = parentctxs
293 self._parents = parentctxs
295 while len(self._parents) < 2:
294 while len(self._parents) < 2:
General Comments 0
You need to be logged in to leave comments. Login now