Skip to content

Commit

Permalink
Sysinfo: Change name and wording of autodetected system type
Browse files Browse the repository at this point in the history
  • Loading branch information
CommandMC committed Dec 18, 2021
1 parent f98abca commit ee66d5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Automator/gui/sysinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def msinfo_finished(self):
f.write('InstallMethod\t{}\t\n'.format(get_button_id(self.install_method, no_info_text)))
f.write('ModifiedWindows\t{}\t\n'.format(get_button_text(self.tweak_buttons, no_info_text)))
f.write('UserSpecifiedSystemType\t{}\t\n'.format(get_button_text(self.platform_buttons)))
f.write('LaptopCertainty\t{}\t\n'.format(str(is_laptop())))
f.write('AutodetectedSystemType\t{}\t\n'.format('Laptop' if is_laptop() else 'Desktop'))
f.write('PSUModel\t{}\t\n'.format(self.psu_model.text() if self.psu_model.text() else no_info_text))
f.write('GPUConnectionMethod\t{}\t\n'.format(get_button_text(self.pcie_riser_buttons, no_info_text)))
f.write('PSUCables\t{}\t\n'.format(self.psu_cables.text() if self.psu_cables.text() else no_info_text))
Expand Down

0 comments on commit ee66d5d

Please sign in to comment.