Show More
@@ -48,9 +48,9 b' class transplants(object):' | |||
|
48 | 48 | if not os.path.isdir(self.path): |
|
49 | 49 | os.mkdir(self.path) |
|
50 | 50 | fp = self.opener(self.transplantfile, 'w') |
|
51 | for l in self.transplants.itervalues(): | |
|
52 |
for |
|
|
53 |
l, r = map(revlog.hex, ( |
|
|
51 | for list in self.transplants.itervalues(): | |
|
52 | for t in list: | |
|
53 | l, r = map(revlog.hex, (t.lnode, t.rnode)) | |
|
54 | 54 | fp.write(l + ':' + r + '\n') |
|
55 | 55 | fp.close() |
|
56 | 56 | self.dirty = False |
General Comments 0
You need to be logged in to leave comments.
Login now