# HG changeset patch # User Matt Mackall # Date 1161816335 18000 # Node ID 467d923e4e3da3fe1594999815578b78f5829400 # Parent b0dc459cd06ca8d35419db762d77dcc24106d8b2 Fix excessive complaining from hg log -b diff -r b0dc459cd06c -r 467d923e4e3d mercurial/commands.py --- a/mercurial/commands.py Wed Oct 25 17:40:03 2006 -0500 +++ b/mercurial/commands.py Wed Oct 25 17:45:35 2006 -0500 @@ -1857,6 +1857,10 @@ changeiter, getchange, matchfn = walkchangerevs(ui, repo, pats, opts) + if opts['branches']: + ui.warn(_("the --branches option is deprecated, " + "please use 'hg branches' instead\n")) + if opts['limit']: try: limit = int(opts['limit']) @@ -1933,8 +1937,6 @@ br = None if opts['branches']: - ui.warn(_("the --branches option is deprecated, " - "please use 'hg branches' instead\n")) br = repo.branchlookup([repo.changelog.node(rev)]) copies = []