Show More
@@ -275,7 +275,7 b' def create_server(ui, repo):' | |||||
275 |
|
275 | |||
276 | def __init__(self, *args, **kwargs): |
|
276 | def __init__(self, *args, **kwargs): | |
277 | if self.address_family is None: |
|
277 | if self.address_family is None: | |
278 | raise RepoError(_('IPv6 not available on this system')) |
|
278 | raise error.RepoError(_('IPv6 not available on this system')) | |
279 | super(IPv6HTTPServer, self).__init__(*args, **kwargs) |
|
279 | super(IPv6HTTPServer, self).__init__(*args, **kwargs) | |
280 |
|
280 | |||
281 | if ssl_cert: |
|
281 | if ssl_cert: |
@@ -1063,7 +1063,7 b' class localrepository(repo.repository):' | |||||
1063 | wlock = self.wlock(False) |
|
1063 | wlock = self.wlock(False) | |
1064 | for f in fixup: |
|
1064 | for f in fixup: | |
1065 | self.dirstate.normal(f) |
|
1065 | self.dirstate.normal(f) | |
1066 |
except |
|
1066 | except error.LockError: | |
1067 | pass |
|
1067 | pass | |
1068 | finally: |
|
1068 | finally: | |
1069 | del wlock |
|
1069 | del wlock |
General Comments 0
You need to be logged in to leave comments.
Login now