log filename

This commit is contained in:
Justin
2021-03-22 15:59:54 +08:00
parent 6a324b9388
commit 9c3c4ce5f9
2 changed files with 4 additions and 1 deletions

3
.gitignore vendored
View File

@@ -18,3 +18,6 @@ venv/
=======
*.pyc
/build/
/dist/
/custom-install-finalize.3dsx

View File

@@ -329,7 +329,7 @@ class CustomInstallGUI(ttk.Frame):
def auto_input_filename(self, f, filename):
sd_msed_path = find_first_file([join(f, 'gm9', 'out', filename), join(f, filename)])
if sd_msed_path:
self.log('Found movable.sed on SD card at ' + sd_msed_path)
self.log('Found ' + filename + ' on SD card at ' + sd_msed_path)
if filename.endswith('bin'):
filename = filename.split('.')[0]
box = self.file_picker_textboxes[filename]