fix spelling error
authorMatt Mackall <mpm@selenic.com>
Tue, 18 Dec 2007 15:40:46 -0600
changeset 5666 9d6ad26fab10
parent 5665 495a9dc86fc2
child 5677 4f977c6d3c03
child 6499 479847ccabe0
fix spelling error
mercurial/localrepo.py
--- a/mercurial/localrepo.py	Tue Dec 18 15:17:11 2007 -0600
+++ b/mercurial/localrepo.py	Tue Dec 18 15:40:46 2007 -0600
@@ -1737,7 +1737,7 @@
             for fname in changedfiles:
                 filerevlog = self.file(fname)
                 if filerevlog.count() == 0:
-                    raise util.abort(_("empty or missing revlog for %s") % fname)
+                    raise util.Abort(_("empty or missing revlog for %s") % fname)
                 # Toss out the filenodes that the recipient isn't really
                 # missing.
                 if msng_filenode_set.has_key(fname):
@@ -1823,7 +1823,7 @@
             for fname in changedfiles:
                 filerevlog = self.file(fname)
                 if filerevlog.count() == 0:
-                    raise util.abort(_("empty or missing revlog for %s") % fname)
+                    raise util.Abort(_("empty or missing revlog for %s") % fname)
                 nodeiter = gennodelst(filerevlog)
                 nodeiter = list(nodeiter)
                 if nodeiter: