comparison hgsubversion/layouts/__init__.py @ 1264:eded1e736a7e

layouts: remove persist since we no longer use it
author Sean Farley <sean.michael.farley@gmail.com>
date Mon, 24 Mar 2014 11:20:49 -0500
parents cd0d14e25757
children 4744b7bfa476
comparison
equal deleted inserted replaced
1263:54cf64e9ef49 1264:eded1e736a7e
11 11
12 from mercurial import util as hgutil 12 from mercurial import util as hgutil
13 13
14 import custom 14 import custom
15 import detect 15 import detect
16 import persist
17 import single 16 import single
18 import standard 17 import standard
19 18
20 __all__ = [ 19 __all__ = [
21 "detect", 20 "detect",
22 "layout_from_name", 21 "layout_from_name",
23 "persist",
24 ] 22 ]
25 23
26 # This is the authoritative store of what layouts are available. 24 # This is the authoritative store of what layouts are available.
27 # The intention is for extension authors who wish to build their own 25 # The intention is for extension authors who wish to build their own
28 # layout to add it to this dict. 26 # layout to add it to this dict.