mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
CURA-5035 Aproaching the asymptote of done
This commit is contained in:
parent
01007946b4
commit
2d54251be0
5 changed files with 24 additions and 20 deletions
|
@ -41,7 +41,7 @@ class AuthorsModel(ListModel):
|
|||
"email": author["email"] if "email" in author else None,
|
||||
"website": author["website"],
|
||||
"package_count": author["package_count"] if "package_count" in author else 0,
|
||||
"package_types": author["package_types"],
|
||||
"package_types": author["package_types"] if "package_types" in author else [],
|
||||
"icon_url": author["icon_url"] if "icon_url" in author else None,
|
||||
"description": "Material and quality profiles from {author_name}".format( author_name = author["display_name"])
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue