##// END OF EJS Templates
convert: fix typos in error messages
Wagner Bruna -
r16162:7e279d47 stable
parent child Browse files
Show More
@@ -225,7 +225,7 b' class mercurial_sink(converter_sink):'
225
225
226 def hascommit(self, rev):
226 def hascommit(self, rev):
227 if not rev in self.repo and self.clonebranches:
227 if not rev in self.repo and self.clonebranches:
228 raise util.Abort(_('revision %s not be found in destination '
228 raise util.Abort(_('revision %s not found in destination '
229 'repository (lookups with clonebranches=true '
229 'repository (lookups with clonebranches=true '
230 'are not implemented)') % rev)
230 'are not implemented)') % rev)
231 return rev in self.repo
231 return rev in self.repo
@@ -1194,5 +1194,5 b' class svn_sink(converter_sink, commandli'
1194 if rev in self.childmap:
1194 if rev in self.childmap:
1195 return True
1195 return True
1196 raise util.Abort(_('splice map revision %s not found in subversion '
1196 raise util.Abort(_('splice map revision %s not found in subversion '
1197 'child map (revision lookups are not implemented')
1197 'child map (revision lookups are not implemented)')
1198 % rev)
1198 % rev)
@@ -203,7 +203,7 b' Test clonebranches'
203 > --splicemap splicemap ordered ordered-hg3
203 > --splicemap splicemap ordered ordered-hg3
204 initializing destination ordered-hg3 repository
204 initializing destination ordered-hg3 repository
205 scanning source...
205 scanning source...
206 abort: revision 717d54d67e6c31fd75ffef2ff3042bdd98418437 not be found in destination repository (lookups with clonebranches=true are not implemented)
206 abort: revision 717d54d67e6c31fd75ffef2ff3042bdd98418437 not found in destination repository (lookups with clonebranches=true are not implemented)
207 [255]
207 [255]
208
208
209 Test invalid dependency
209 Test invalid dependency
General Comments 0
You need to be logged in to leave comments. Login now