Show More
@@ -181,7 +181,7 b' def asciiedges(type, char, lines, seen, ' | |||||
181 | ncols = len(seen) |
|
181 | ncols = len(seen) | |
182 | nextseen = seen[:] |
|
182 | nextseen = seen[:] | |
183 | nextseen[nodeidx:nodeidx + 1] = newparents |
|
183 | nextseen[nodeidx:nodeidx + 1] = newparents | |
184 | edges = [(nodeidx, nextseen.index(p)) for p in knownparents] |
|
184 | edges = [(nodeidx, nextseen.index(p)) for p in knownparents if p != nullrev] | |
185 |
|
185 | |||
186 | while len(newparents) > 2: |
|
186 | while len(newparents) > 2: | |
187 | # ascii() only knows how to add or remove a single column between two |
|
187 | # ascii() only knows how to add or remove a single column between two |
General Comments 0
You need to be logged in to leave comments.
Login now