Skip to content

Commit

Permalink
Removed deprecated distutils package.
Browse files Browse the repository at this point in the history
  • Loading branch information
Illidanz committed Aug 20, 2024
1 parent df1d51f commit e529f75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hacktools/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.35.2"
__version__ = "0.36.0"
3 changes: 1 addition & 2 deletions hacktools/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -1163,8 +1163,7 @@ def copyFolder(f1, f2):


def mergeFolder(f1, f2):
import distutils.dir_util
distutils.dir_util.copy_tree(f1, f2, verbose=0)
shutil.copytree(f1, f2, dirs_exist_ok=True)


def copyFile(f1, f2):
Expand Down

0 comments on commit e529f75

Please sign in to comment.