--- a/hgext/convert/darcs.py Wed Apr 14 11:59:53 2010 +0530
+++ b/hgext/convert/darcs.py Sun Apr 18 15:47:49 2010 +0200
@@ -34,10 +34,10 @@
# check for _darcs, ElementTree, _darcs/inventory so that we can
# easily skip test-convert-darcs if ElementTree is not around
if not os.path.exists(os.path.join(path, '_darcs', 'inventories')):
- raise NoRepo("%s does not look like a darcs repo" % path)
+ raise NoRepo("%s does not look like a darcs repository" % path)
if not os.path.exists(os.path.join(path, '_darcs')):
- raise NoRepo("%s does not look like a darcs repo" % path)
+ raise NoRepo("%s does not look like a darcs repository" % path)
checktool('darcs')
version = self.run0('--version').splitlines()[0].strip()