We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 938fde9 commit e9cdf3aCopy full SHA for e9cdf3a
gui/main_window.py
@@ -61,7 +61,7 @@ def __init__(self, language):
61
self.now_reinstalling.setVisible(False)
62
self.next_button_5.setEnabled(False)
63
64
- self.iversion = '1.1'
+ self.iversion = '1.11'
65
66
# -------------------------------------------- #
67
libs/launcher_reinstall.py
@@ -38,8 +38,8 @@ def run(self):
38
uninstall = Popen(['cmd.exe', '/c', 'msiexec', '/uninstall',
39
msi_path, '/quiet'], shell=True)
40
output, error = uninstall.communicate()
41
- if uninstall.returncode != 0:
42
- print("Произошла ошибка при удалении:", error.decode())
+ # if uninstall.returncode != 0:
+ # print("Произошла ошибка при удалении:", error.decode())
43
44
uninstall.wait()
45
self.progress_signal.emit(33)
@@ -49,8 +49,8 @@ def run(self):
49
['cmd.exe', '/c', 'msiexec', '/package', msi_path,
50
'/quiet', 'CREATE_DESKTOP_SHORTCUT=0'], shell=True)
51
output, error = install.communicate()
52
53
- print("Произошла ошибка при установке:", error.decode())
+ # print("Произошла ошибка при установке:", error.decode())
54
install.wait()
55
self.progress_signal.emit(66)
56
self.continue_reinstall.emit(self.paradox_folder1)
0 commit comments