# HG changeset patch # User Martin von Zweigbergk # Date 1559770184 25200 # Node ID 381d8fa53f34ed53032fae59be7cf9b12ce14fff # Parent c77ab654415b22bb2ecbf2aaaaabb50b4c1d46a1# Parent d532292eff22b095c994ffedcd4bf98f84f873aa merge with stable diff -r c77ab654415b -r 381d8fa53f34 mercurial/localrepo.py --- a/mercurial/localrepo.py Wed Jun 05 10:18:00 2019 -0400 +++ b/mercurial/localrepo.py Wed Jun 05 14:29:44 2019 -0700 @@ -133,10 +133,10 @@ def join(self, obj, fnameandlocation): fname, location = fnameandlocation - if location == '': + if location == 'plain': return obj.vfs.join(fname) else: - if location != 'store': + if location != '': raise error.ProgrammingError('unexpected location: %s' % location) return obj.sjoin(fname) @@ -1225,8 +1225,8 @@ cls = repoview.newtype(self.unfiltered().__class__) return cls(self, name, visibilityexceptions) - @mixedrepostorecache(('bookmarks', ''), ('bookmarks.current', ''), - ('bookmarks', 'store'), ('00changelog.i', 'store')) + @mixedrepostorecache(('bookmarks', 'plain'), ('bookmarks.current', 'plain'), + ('bookmarks', ''), ('00changelog.i', '')) def _bookmarks(self): return bookmarks.bmstore(self)