Comments
Patch
@@ -137,7 +137,7 @@
def getchanges(self, version, full):
if full:
- raise error.Abort(_("convert from cvs do not support --full"))
+ raise error.Abort(_("convert from cvs does not support --full"))
self._modecache = {}
self._revtree = self.sourcerepo.revision_tree(version)
# get the parentids from the cache
@@ -263,7 +263,7 @@
def getchanges(self, rev, full):
if full:
- raise error.Abort(_("convert from cvs do not support --full"))
+ raise error.Abort(_("convert from cvs does not support --full"))
self._parse()
return sorted(self.files[rev].iteritems()), {}, set()
@@ -158,7 +158,7 @@
def getchanges(self, rev, full):
if full:
- raise error.Abort(_("convert from darcs do not support --full"))
+ raise error.Abort(_("convert from darcs does not support --full"))
copies = {}
changes = []
man = None
@@ -210,7 +210,7 @@
def getchanges(self, version, full):
if full:
- raise error.Abort(_("convert from git do not support --full"))
+ raise error.Abort(_("convert from git does not support --full"))
self.modecache = {}
fh = self.gitopen("git diff-tree -z --root -m -r %s %s" % (
self.simopt, version))
@@ -144,7 +144,7 @@
def getchanges(self, rev, full):
if full:
- raise error.Abort(_("convert from arch do not support --full"))
+ raise error.Abort(_("convert from arch does not support --full"))
self._update(rev)
changes = []
copies = {}
@@ -229,7 +229,8 @@
def getchanges(self, rev, full):
if full:
- raise error.Abort(_("convert from monotone do not support --full"))
+ raise error.Abort(_("convert from monotone does not support "
+ "--full"))
revision = self.mtnrun("get_revision", rev).split("\n\n")
files = {}
ignoremove = {}
@@ -277,7 +277,7 @@
def getchanges(self, rev, full):
if full:
- raise error.Abort(_("convert from p4 do not support --full"))
+ raise error.Abort(_("convert from p4 does not support --full"))
return self.files[rev], self.copies[rev], set()
def getcommit(self, rev):