Moved changelog output to get_updates.py and finally made -c parameter

working.
This commit is contained in:
2019-12-12 23:37:27 +01:00
parent 0341218fc1
commit e6b8d941e0
2 changed files with 7 additions and 6 deletions
-6
View File
@@ -101,12 +101,6 @@ class UpdateInfo:
if len(self.files) > 0:
url = self.files[0]["url"]
txt = "[{}] {} {} {}: {}".format(self.source, self.sku, self.device_name, self.fw_version, url)
if self.changelog:
txt += "\nChangelog:\n" + self.changelog
if self.notes:
txt += "\n\nNotes:\n" + self.notes
if self.additional_info_url:
txt += "\nAdditional Information: " + self.additional_info_url
return txt
def __repr__(self):