File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,12 +55,12 @@ class BuildEnvironment(object):
55
55
56
56
def __init__ (self ):
57
57
# type: () -> None
58
- self . _temp_dir = TempDirectory (
58
+ temp_dir = TempDirectory (
59
59
kind = build_env_kind , globally_managed = True
60
60
)
61
61
62
62
self ._prefixes = OrderedDict ((
63
- (name , _Prefix (os .path .join (self . _temp_dir .path , name )))
63
+ (name , _Prefix (os .path .join (temp_dir .path , name )))
64
64
for name in ('normal' , 'overlay' )
65
65
))
66
66
@@ -79,7 +79,7 @@ def __init__(self):
79
79
get_python_lib (plat_specific = True ),
80
80
)
81
81
}
82
- self ._site_dir = os .path .join (self . _temp_dir .path , 'site' )
82
+ self ._site_dir = os .path .join (temp_dir .path , 'site' )
83
83
if not os .path .exists (self ._site_dir ):
84
84
os .mkdir (self ._site_dir )
85
85
with open (os .path .join (self ._site_dir , 'sitecustomize.py' ), 'w' ) as fp :
You can’t perform that action at this time.
0 commit comments