##// END OF EJS Templates
Make pull count jargon less confusing...
mpm@selenic.com -
r772:f05deda5 default
parent child Browse files
Show More
@@ -1278,7 +1278,7 b' class localrepository:'
1278 mo = self.manifest.addgroup(getgroup(), revmap, tr)
1278 mo = self.manifest.addgroup(getgroup(), revmap, tr)
1279
1279
1280 # process the files
1280 # process the files
1281 self.ui.status("adding file revisions\n")
1281 self.ui.status("adding file changes\n")
1282 while 1:
1282 while 1:
1283 f = getchunk()
1283 f = getchunk()
1284 if not f: break
1284 if not f: break
@@ -1289,9 +1289,9 b' class localrepository:'
1289 revisions += fl.count() - o
1289 revisions += fl.count() - o
1290 files += 1
1290 files += 1
1291
1291
1292 self.ui.status(("modified %d files, added %d changesets" +
1292 self.ui.status(("added %d changesets" +
1293 " and %d new revisions\n")
1293 " with %d changes to %d files\n")
1294 % (files, changesets, revisions))
1294 % (changesets, revisions, files))
1295
1295
1296 tr.close()
1296 tr.close()
1297 return
1297 return
General Comments 0
You need to be logged in to leave comments. Login now