Show More
@@ -134,7 +134,7 class verifier(object): | |||||
134 |
|
134 | |||
135 | This method run all verifications, displaying issues as they are found. |
|
135 | This method run all verifications, displaying issues as they are found. | |
136 |
|
136 | |||
137 | return 1 if any error have been encountered""" |
|
137 | return 1 if any error have been encountered, 0 otherwise.""" | |
138 | repo = self.repo |
|
138 | repo = self.repo | |
139 |
|
139 | |||
140 | ui = repo.ui |
|
140 | ui = repo.ui | |
@@ -171,6 +171,7 class verifier(object): | |||||
171 | ui.warn(_("(first damaged changeset appears to be %d)\n") |
|
171 | ui.warn(_("(first damaged changeset appears to be %d)\n") | |
172 | % min(self.badrevs)) |
|
172 | % min(self.badrevs)) | |
173 | return 1 |
|
173 | return 1 | |
|
174 | return 0 | |||
174 |
|
175 | |||
175 | def _verifychangelog(self): |
|
176 | def _verifychangelog(self): | |
176 | ui = self.ui |
|
177 | ui = self.ui |
General Comments 0
You need to be logged in to leave comments.
Login now