comparison mercurial/localrepo.py @ 2972:96d034d02d61

Demote a pull note to a debug message
author Matt Mackall <mpm@selenic.com>
date Sun, 20 Aug 2006 21:59:51 -0500
parents 5bb65c3945a3
children eef469259745
comparison
equal deleted inserted replaced
2964:26c8d37496c2 2972:96d034d02d61
1103 if force: 1103 if force:
1104 self.ui.warn(_("warning: repository is unrelated\n")) 1104 self.ui.warn(_("warning: repository is unrelated\n"))
1105 else: 1105 else:
1106 raise util.Abort(_("repository is unrelated")) 1106 raise util.Abort(_("repository is unrelated"))
1107 1107
1108 self.ui.note(_("found new changesets starting at ") + 1108 self.ui.debug(_("found new changesets starting at ") +
1109 " ".join([short(f) for f in fetch]) + "\n") 1109 " ".join([short(f) for f in fetch]) + "\n")
1110 1110
1111 self.ui.debug(_("%d total queries\n") % reqcnt) 1111 self.ui.debug(_("%d total queries\n") % reqcnt)
1112 1112
1113 return fetch.keys() 1113 return fetch.keys()