--- a/src/eric7/VCS/__init__.py Fri Aug 26 14:49:15 2022 +0200 +++ b/src/eric7/VCS/__init__.py Mon Aug 29 13:30:08 2022 +0200 @@ -33,7 +33,7 @@ # that should not happen vc = None - vc = pluginManager.getPluginObject("version_control", vcs, maybeActive=True) + vc = pluginManager.getPluginObject("version_control", vcs, maybeActive=True)[0] if vc is None: # try alternative vcs interfaces assuming, that there is a common # indicator for the alternatives @@ -44,7 +44,7 @@ if vcsSystem != vcs: vc = pluginManager.getPluginObject( "version_control", vcsSystem, maybeActive=True - ) + )[0] if vc is not None: return vc