# HG changeset patch # User Johannes Bornhold # Date 2016-06-06 14:14:37 # Node ID 3d3a5dc9efd4b895b73dc8d53bc38fc205e3a493 # Parent 1a61264bdae2f0d5d05d3d72980a26c1f2c6feb4 authn: Bugfix, use the fallback plugin setting in log message. diff --git a/rhodecode/authentication/registry.py b/rhodecode/authentication/registry.py --- a/rhodecode/authentication/registry.py +++ b/rhodecode/authentication/registry.py @@ -79,7 +79,7 @@ class AuthenticationPluginRegistry(objec if self._fallback_plugin: log.warn( 'Using fallback authentication plugin from INI file: "%s"', - plugin.get_id()) + self._fallback_plugin) plugin = self.get_plugin(self._fallback_plugin) if plugin is not None and plugin not in plugins: plugins.append(plugin)