##// END OF EJS Templates
subrepo: mark string for translation and fix case
Martin Geisler -
r10183:572dd10f default
parent child Browse files
Show More
@@ -309,8 +309,8 b' class svnsubrepo(object):'
309
309
310 def remove(self):
310 def remove(self):
311 if self.dirty():
311 if self.dirty():
312 self._repo.ui.warn('Not removing repo %s because'
312 self._repo.ui.warn(_('not removing repo %s because'
313 'it has changes.\n' % self._path)
313 'it has changes.\n' % self._path))
314 return
314 return
315 self._repo.ui.note('removing subrepo %s\n' % self._path)
315 self._repo.ui.note('removing subrepo %s\n' % self._path)
316 shutil.rmtree(self._ctx.repo.join(self._path))
316 shutil.rmtree(self._ctx.repo.join(self._path))
General Comments 0
You need to be logged in to leave comments. Login now