From 031714f0e220e59fe23271f39303d3e69949e534 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 25 Sep 2022 12:37:32 +0200 Subject: [PATCH] Addon Manager: [skip ci] fix typo --- src/Mod/AddonManager/addonmanager_devmode.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)