Show More
@@ -187,7 +187,8 b' class convert_svn(converter_source):' | |||
|
187 | 187 | if revnum > from_revnum: |
|
188 | 188 | from_revnum = revnum |
|
189 | 189 | |
|
190 |
self.ui. |
|
|
190 | self.ui.note('fetching revision log from %d to %d\n' % \ | |
|
191 | (from_revnum, to_revnum)) | |
|
191 | 192 | |
|
192 | 193 | def get_entry_from_path(path, module=self.module): |
|
193 | 194 | # Given the repository url of this wc, say |
@@ -219,6 +220,10 b' class convert_svn(converter_source):' | |||
|
219 | 220 | received.append((orig_paths, revnum, author, date, message)) |
|
220 | 221 | |
|
221 | 222 | def after_received(orig_paths, revnum, author, date, message): |
|
223 | self.ui.note("parsing revision %d\n" % revnum) | |
|
224 | if orig_paths is None: | |
|
225 | return | |
|
226 | ||
|
222 | 227 | if revnum in self.modulemap: |
|
223 | 228 | new_module = self.modulemap[revnum] |
|
224 | 229 | if new_module != self.module: |
@@ -228,10 +233,6 b' class convert_svn(converter_source):' | |||
|
228 | 233 | copyfrom = {} # Map of entrypath, revision for finding source of deleted revisions. |
|
229 | 234 | copies = {} |
|
230 | 235 | entries = [] |
|
231 | self.ui.debug("Parsing revision %d\n" % revnum) | |
|
232 | if orig_paths is None: | |
|
233 | return | |
|
234 | ||
|
235 | 236 | rev = self.rev(revnum) |
|
236 | 237 | try: |
|
237 | 238 | branch = self.module.split("/")[-1] |
General Comments 0
You need to be logged in to leave comments.
Login now