File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,14 +49,14 @@ class ModuleData:
49
49
50
50
@contextmanager
51
51
def sys_path (self ) -> Iterator [str ]:
52
- """Context manaxger to temporarily alter sys.path"""
52
+ """Context manager to temporarily alter sys.path"""
53
53
extra_sys_path = str (self .extra_sys_path ) if self .extra_sys_path else ""
54
54
if extra_sys_path :
55
- logger .warning ("Adding %s to sys.path..." , extra_sys_path )
55
+ logger .debug ("Adding %s to sys.path..." , extra_sys_path )
56
56
sys .path .insert (0 , extra_sys_path )
57
57
yield extra_sys_path
58
58
if extra_sys_path and sys .path and sys .path [0 ] == extra_sys_path :
59
- logger .warning ("Removing %s from sys.path..." , extra_sys_path )
59
+ logger .debug ("Removing %s from sys.path..." , extra_sys_path )
60
60
sys .path .pop (0 )
61
61
62
62
You can’t perform that action at this time.
0 commit comments