# HG changeset patch # User Phil Cohen # Date 1512681647 28800 # Node ID d4f65050f3c5bab7a01f5d6c25f72ae1868760a4 # Parent 8b3a636bb341ebe94b76044228e6c26b749f4cec overlayworkingctx: fix a bad reference to `self._path` Differential Revision: https://phab.mercurial-scm.org/D1236 diff -r 8b3a636bb341 -r d4f65050f3c5 mercurial/context.py --- a/mercurial/context.py Thu Dec 07 13:20:47 2017 -0800 +++ b/mercurial/context.py Thu Dec 07 13:20:47 2017 -0800 @@ -2010,7 +2010,7 @@ return self._wrappedctx[path].data() else: raise error.ProgrammingError("No such file or directory: %s" % - self._path) + path) else: return self._wrappedctx[path].data()