Addon Manager: [skip ci] fix typo

This commit is contained in:
wmayer
2022-09-25 12:37:32 +02:00
parent 220982748d
commit 031714f0e2

View File

@@ -84,14 +84,14 @@ class AddonGitInterface:
@property
def committers(self):
"""The commiters to this repo, in the last ten commits"""
"""The committers to this repo, in the last ten commits"""
if self.git_exists:
return AddonGitInterface.git_manager.get_last_committers(self.path, 10)
return []
@property
def authors(self):
"""The commiters to this repo, in the last ten commits"""
"""The committers to this repo, in the last ten commits"""
if self.git_exists:
return AddonGitInterface.git_manager.get_last_authors(self.path, 10)
return []
@@ -593,4 +593,4 @@ class DeveloperMode:
)
return
self.metadata.Icon = new_icon_path[len(base_path) :]
self._populate_icon_from_metadata(self.metadata)
self._populate_icon_from_metadata(self.metadata)