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