Show More
@@ -134,7 +134,7 b' class verifier(object):' | |||
|
134 | 134 | |
|
135 | 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 | 138 | repo = self.repo |
|
139 | 139 | |
|
140 | 140 | ui = repo.ui |
@@ -171,6 +171,7 b' class verifier(object):' | |||
|
171 | 171 | ui.warn(_("(first damaged changeset appears to be %d)\n") |
|
172 | 172 | % min(self.badrevs)) |
|
173 | 173 | return 1 |
|
174 | return 0 | |
|
174 | 175 | |
|
175 | 176 | def _verifychangelog(self): |
|
176 | 177 | ui = self.ui |
General Comments 0
You need to be logged in to leave comments.
Login now