##// END OF EJS Templates
phases: use absolute_import
Gregory Szorc -
r25966:f14cea32 default
parent child Browse files
Show More
@@ -100,11 +100,23 b' Note: old client behave as a publishing '
100
100
101 """
101 """
102
102
103 import os
103 from __future__ import absolute_import
104
104 import errno
105 import errno
105 from node import nullid, nullrev, bin, hex, short
106 import os
106 from i18n import _
107
107 import util, error
108 from .i18n import _
109 from .node import (
110 bin,
111 hex,
112 nullid,
113 nullrev,
114 short,
115 )
116 from . import (
117 error,
118 util,
119 )
108
120
109 allphases = public, draft, secret = range(3)
121 allphases = public, draft, secret = range(3)
110 trackedphases = allphases[1:]
122 trackedphases = allphases[1:]
General Comments 0
You need to be logged in to leave comments. Login now