# HG changeset patch # User mpm@selenic.com # Date 1122310949 18000 # Node ID f05deda58457defb3490dbf4d7be0b0a1d723636 # Parent 0de22301208613404aa3bea7868793e4330d83b0 Make pull count jargon less confusing revisions are now synonymous with changesets, and not file changes diff --git a/mercurial/hg.py b/mercurial/hg.py --- a/mercurial/hg.py +++ b/mercurial/hg.py @@ -1278,7 +1278,7 @@ class localrepository: mo = self.manifest.addgroup(getgroup(), revmap, tr) # process the files - self.ui.status("adding file revisions\n") + self.ui.status("adding file changes\n") while 1: f = getchunk() if not f: break @@ -1289,9 +1289,9 @@ class localrepository: revisions += fl.count() - o files += 1 - self.ui.status(("modified %d files, added %d changesets" + - " and %d new revisions\n") - % (files, changesets, revisions)) + self.ui.status(("added %d changesets" + + " with %d changes to %d files\n") + % (changesets, revisions, files)) tr.close() return