diff --git a/src/Mod/AddonManager/addonmanager_devmode.py b/src/Mod/AddonManager/addonmanager_devmode.py index 46e56c7343..b728e770e7 100644 --- a/src/Mod/AddonManager/addonmanager_devmode.py +++ b/src/Mod/AddonManager/addonmanager_devmode.py @@ -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) \ No newline at end of file + self._populate_icon_from_metadata(self.metadata)