# HG changeset patch # User Matt Mackall # Date 1262301946 21600 # Node ID 65b6dc44cdbf420bd8e9436972a618bb122dd6d3 # Parent 513c89a60f203a8387d8dfa6f2dc67b21725790a subrepo: fix includes support in .hgsub diff -r 513c89a60f20 -r 65b6dc44cdbf mercurial/subrepo.py --- a/mercurial/subrepo.py Thu Dec 31 00:03:19 2009 +0100 +++ b/mercurial/subrepo.py Thu Dec 31 17:25:46 2009 -0600 @@ -16,12 +16,12 @@ p = config.config() def read(f, sections=None, remap=None): if f in ctx: - try: - p.parse(f, ctx[f].data(), sections, remap) - except IOError, err: - if err.errno != errno.ENOENT: - raise - read('.hgsub') + p.parse(f, ctx[f].data(), sections, remap, read) + else: + raise util.Abort(_("subrepo spec file %s not found") % f) + + if '.hgsub' in ctx: + read('.hgsub') rev = {} if '.hgsubstate' in ctx: