Skip to content

Commit a233bd8

Browse files
authored
Merge pull request #21 from YourKalamity/udb
Merge patches
2 parents d11795c + 20733e4 commit a233bd8

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

Diff for: cxfreeze_setup.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
#!/usr/bin/env python3
22

33
from cx_Freeze import setup, Executable
4-
import platform
54

65
build_exe_options = {'build_exe': "dist"}
7-
86
base = None
9-
if platform.system() == "Windows":
10-
base = "Win32GUI"
117

128
setup(
139
name="lazy-dsi-file-downloader",
14-
version="3.1.5",
10+
version="3.2.2",
1511
description="Lazy DSi File Downloader",
1612
options={"build_exe": build_exe_options},
1713
executables=[Executable("main.py", base=base)],

Diff for: main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def download_TWLMenu(directory, cwdtemp):
172172

173173
# Move TWiLight Menu
174174
for folder in twlfolders:
175-
shutil.copytree(cwdtemp + folder, directory + "/" + folder + "/")
175+
shutil.copytree(cwdtemp + folder, directory + "/" + folder + "/", dirs_exist_ok=True)
176176
for files in twlfiles:
177177
shutil.move(cwdtemp + files, directory)
178178

0 commit comments

Comments
 (0)