Mercurial > hgsubversion
comparison fetch_command.py @ 166:db88e528e8e6
Fixed typo: "continue" should have been "break".
author | Martin Geisler <mg@daimi.au.dk> |
---|---|
date | Tue, 30 Dec 2008 19:24:16 -0600 |
parents | fdc249cd1a0a |
children | 3cd6a7354207 |
comparison
equal
deleted
inserted
replaced
165:a05250261102 | 166:db88e528e8e6 |
---|---|
64 valid = False | 64 valid = False |
65 hg_editor.update_branch_tag_map_for_rev(r) | 65 hg_editor.update_branch_tag_map_for_rev(r) |
66 for p in r.paths: | 66 for p in r.paths: |
67 if hg_editor._is_path_valid(p): | 67 if hg_editor._is_path_valid(p): |
68 valid = True | 68 valid = True |
69 continue | 69 break |
70 if initializing_repo and start > 0: | 70 if initializing_repo and start > 0: |
71 assert False, 'This feature not ready yet.' | 71 assert False, 'This feature not ready yet.' |
72 if valid: | 72 if valid: |
73 # got a 502? Try more than once! | 73 # got a 502? Try more than once! |
74 tries = 0 | 74 tries = 0 |