renamed fields

This commit is contained in:
Maxim Devaev 2022-06-08 16:03:36 +03:00
parent 7832924aac
commit 580dcf6a2d

View File

@ -197,8 +197,8 @@ def main(argv: Optional[List[str]]=None) -> None:
edid.write("" if options.stdout else options.path) edid.write("" if options.stdout else options.path)
if options.show_info: if options.show_info:
print("Mfc ID: ", edid.get_mfc_id()) print("Manufacturer ID:", edid.get_mfc_id())
print("Product ID: ", edid.get_product_id()) print("Product ID: ", edid.get_product_id())
print("Serial: ", edid.get_serial()) print("Serial number: ", edid.get_serial())
print("Monitor name:", edid.get_monitor_name()) print("Monitor name: ", edid.get_monitor_name())
print("Audio: ", ("yes" if edid.get_audio() else "no"), file=sys.stderr) print("Basic audio: ", ("yes" if edid.get_audio() else "no"), file=sys.stderr)