Skip to content

Commit f2e81a8

Browse files
committed
host: Fix incorrect import
Fix import of `shutils` to `shutil`
1 parent c88a5db commit f2e81a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devlib/host.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
if sys.version_info >= (3, 8):
3232
def copy_tree(src, dst):
33-
from shutils import copy, copytree
33+
from shutil import copy, copytree
3434
copytree(
3535
src,
3636
dst,

0 commit comments

Comments
 (0)