We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ea89dc commit 5022fd8Copy full SHA for 5022fd8
models.py
@@ -333,7 +333,7 @@ def full_name(self):
333
An Authoring Tool has at least a name; company and version are optional.
334
"""
335
336
- full_name_without_version = f'{company_name} - {self.name}'.strip() if self.company else f'{self.name}'.strip()
+ full_name_without_version = f'{company.name} - {self.name}'.strip() if self.company else f'{self.name}'.strip()
337
return f'{full_name_without_version} - {self.version}'.strip() if self.version else full_name_without_version
338
339
def find_by_full_name(full_name):
0 commit comments