Skip to content

Commit ee66d5d

Browse files
committed
Sysinfo: Change name and wording of autodetected system type
1 parent f98abca commit ee66d5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Automator/gui/sysinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ def msinfo_finished(self):
291291
f.write('InstallMethod\t{}\t\n'.format(get_button_id(self.install_method, no_info_text)))
292292
f.write('ModifiedWindows\t{}\t\n'.format(get_button_text(self.tweak_buttons, no_info_text)))
293293
f.write('UserSpecifiedSystemType\t{}\t\n'.format(get_button_text(self.platform_buttons)))
294-
f.write('LaptopCertainty\t{}\t\n'.format(str(is_laptop())))
294+
f.write('AutodetectedSystemType\t{}\t\n'.format('Laptop' if is_laptop() else 'Desktop'))
295295
f.write('PSUModel\t{}\t\n'.format(self.psu_model.text() if self.psu_model.text() else no_info_text))
296296
f.write('GPUConnectionMethod\t{}\t\n'.format(get_button_text(self.pcie_riser_buttons, no_info_text)))
297297
f.write('PSUCables\t{}\t\n'.format(self.psu_cables.text() if self.psu_cables.text() else no_info_text))

0 commit comments

Comments
 (0)