##// END OF EJS Templates
bookmarks: use absolute_import
Gregory Szorc -
r25917:aa323b53 default
parent child Browse files
Show More
@@ -5,11 +5,22 b''
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 from __future__ import absolute_import
9
10 import errno
8 import os
11 import os
9 from mercurial.i18n import _
12
10 from mercurial.node import hex, bin
13 from .i18n import _
11 from mercurial import encoding, util, obsolete, lock as lockmod
14 from .node import (
12 import errno
15 bin,
16 hex,
17 )
18 from . import (
19 encoding,
20 lock as lockmod,
21 obsolete,
22 util,
23 )
13
24
14 class bmstore(dict):
25 class bmstore(dict):
15 """Storage for bookmarks.
26 """Storage for bookmarks.
General Comments 0
You need to be logged in to leave comments. Login now