Mercurial > public > mercurial-scm > hg
diff mercurial/hg.py @ 9423:1444a42f6052
Make distinct lookup error for localrepo.lookup
This allows clone/share to correctly distinguish lookup errors from
corruption errors and catch only the former.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 31 Aug 2009 10:58:33 -0500 |
parents | eb6af02307ec |
children | 6cfea6e4c892 |
line wrap: on
line diff
--- a/mercurial/hg.py Thu Aug 27 00:00:15 2009 +0200 +++ b/mercurial/hg.py Mon Aug 31 10:58:33 2009 -0500 @@ -137,10 +137,12 @@ if update is not True: checkout = update for test in (checkout, 'default', 'tip'): + if test is None: + continue try: uprev = r.lookup(test) break - except LookupError: + except error.RepoLookupError: continue _update(r, uprev) @@ -309,10 +311,12 @@ if update is not True: checkout = update for test in (checkout, 'default', 'tip'): + if test is None: + continue try: uprev = dest_repo.lookup(test) break - except: + except error.RepoLookupError: continue _update(dest_repo, uprev)