Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pixelsuft committed Mar 5, 2023
1 parent d508f57 commit 16f810e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def check_radio_buttons(self, *args: any) -> None:
self.ui.loaderType.setChecked(True)

def check_install_dir(self) -> None:
install_dir = self.ui.folderpathEdit.text()
install_dir = self.ui.folderpathEdit.text().strip()
self.logger.log('Install dir check', install_dir)
if not os.path.isdir(install_dir):
self.logger.log('Install dir check failed')
Expand Down

0 comments on commit 16f810e

Please sign in to comment.