Show More
@@ -447,9 +447,9 b' class GitRemote(RemoteBase):' | |||
|
447 | 447 | result[attr] = method(wire, _commit_id, _path) |
|
448 | 448 | except KeyError as e: |
|
449 | 449 | raise exceptions.VcsException(e)(f'Unknown bulk attribute: "{attr}"') |
|
450 |
return |
|
|
450 | return result | |
|
451 | 451 | |
|
452 | return _bulk_file_request(repo_id, commit_id, path, sorted(pre_load)) | |
|
452 | return BinaryEnvelope(_bulk_file_request(repo_id, commit_id, path, sorted(pre_load))) | |
|
453 | 453 | |
|
454 | 454 | def _build_opener(self, url: str): |
|
455 | 455 | handlers = [] |
@@ -583,9 +583,9 b' class HgRemote(RemoteBase):' | |||
|
583 | 583 | result[attr] = method(wire, _commit_id, _path) |
|
584 | 584 | except KeyError as e: |
|
585 | 585 | raise exceptions.VcsException(e)(f'Unknown bulk attribute: "{attr}"') |
|
586 |
return |
|
|
586 | return result | |
|
587 | 587 | |
|
588 | return _bulk_file_request(repo_id, commit_id, path, sorted(pre_load)) | |
|
588 | return BinaryEnvelope(_bulk_file_request(repo_id, commit_id, path, sorted(pre_load))) | |
|
589 | 589 | |
|
590 | 590 | @reraise_safe_exceptions |
|
591 | 591 | def fctx_annotate(self, wire, revision, path): |
@@ -139,9 +139,9 b' class SvnRemote(RemoteBase):' | |||
|
139 | 139 | result[attr] = method(wire, _commit_id, _path) |
|
140 | 140 | except KeyError as e: |
|
141 | 141 | raise exceptions.VcsException(e)(f'Unknown bulk attribute: "{attr}"') |
|
142 |
return |
|
|
142 | return result | |
|
143 | 143 | |
|
144 | return _bulk_file_request(repo_id, commit_id, path, sorted(pre_load)) | |
|
144 | return BinaryEnvelope(_bulk_file_request(repo_id, commit_id, path, sorted(pre_load))) | |
|
145 | 145 | |
|
146 | 146 | @reraise_safe_exceptions |
|
147 | 147 | def discover_svn_version(self): |
General Comments 0
You need to be logged in to leave comments.
Login now