Fix ImportError: cannot import name 'dir_util' from 'distutils'
This commit is contained in:
parent
18599e2e81
commit
35c9aeff8b
1 changed files with 1 additions and 2 deletions
|
@ -17,7 +17,6 @@ as well as sources.xml
|
||||||
import shutil
|
import shutil
|
||||||
import os
|
import os
|
||||||
from os import path # allows to use path_ops.path.join, for example
|
from os import path # allows to use path_ops.path.join, for example
|
||||||
from distutils import dir_util
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
import xbmcvfs
|
import xbmcvfs
|
||||||
|
@ -187,7 +186,7 @@ def copy_tree(src, dst, *args, **kwargs):
|
||||||
(the default), the destination of the symlink will be copied.
|
(the default), the destination of the symlink will be copied.
|
||||||
'update' and 'verbose' are the same as for 'copy_file'.
|
'update' and 'verbose' are the same as for 'copy_file'.
|
||||||
"""
|
"""
|
||||||
return dir_util.copy_tree(src, dst, *args, **kwargs)
|
return shutil.copy_tree(src, dst, *args, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
def basename(path):
|
def basename(path):
|
||||||
|
|
Loading…
Reference in a new issue