change blender file

This commit is contained in:
IDONTSUDO 2024-05-02 17:41:42 +03:00
parent e0a6cd0af1
commit a0cee0b394

View file

@ -8,7 +8,7 @@ args = parser.parse_args()
def copy_and_move_folder(src, dst):
try:
if os.path.exists(src):
if os.path.exists(src) is False:
shutil.rmtree(src)
shutil.copytree(src, dst)
print(f"Folder {src} successfully copied")