Show More
@@ -144,11 +144,11 b' class convert_cvs(converter_source):' | |||||
144 | if branch == "HEAD": |
|
144 | if branch == "HEAD": | |
145 | branch = "" |
|
145 | branch = "" | |
146 | if branch: |
|
146 | if branch: | |
147 |
latest = |
|
147 | latest = 0 | |
148 | # the last changeset that contains a base |
|
148 | # the last changeset that contains a base | |
149 | # file is our parent |
|
149 | # file is our parent | |
150 | for r in oldrevs: |
|
150 | for r in oldrevs: | |
151 |
latest = max(filerevids.get(r, |
|
151 | latest = max(filerevids.get(r, 0), latest) | |
152 | if latest: |
|
152 | if latest: | |
153 | p = [latest] |
|
153 | p = [latest] | |
154 |
|
154 |
General Comments 0
You need to be logged in to leave comments.
Login now