[fix][ui][settings] not matching the default system locale with the available options

This commit is contained in:
Vinícius Moreira
2020-03-11 11:01:35 -03:00
parent c212c35905
commit 574db7fda1
3 changed files with 8 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ class AppImage(SoftwarePackage):
def __init__(self, name: str = None, description: str = None, github: str = None, source: str = None, version: str = None,
url_download: str = None, url_icon: str = None, url_screenshot: str = None, license: str = None, author: str = None,
categories=None, icon_path: str = None, installed: bool = False,
url_download_latest_version: str = None):
url_download_latest_version: str = None, **kwargs):
super(AppImage, self).__init__(id=name, name=name, version=version, latest_version=version,
icon_url=url_icon, license=license, description=description,
installed=installed)