Merge pull request #1449 from croneter/fix-importerror

Fix ImportError: cannot import name 'dir_util' from 'distutils' on PKC startup
This commit is contained in:
croneter 2021-04-17 14:18:56 +02:00 committed by GitHub
commit 114377da0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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):