From e9547131eb3ccc7e7301a91714abafa9f5799e48 Mon Sep 17 00:00:00 2001 From: Akihiro MOTOKI Date: Tue, 9 Apr 2013 19:15:46 +0900 Subject: [PATCH] Improve the deprecated message about DEFAULT.root_helper bug #1166706 Change-Id: Ic90fefefc0c3339cbc876e4402b6d6c5aa841c47 --- quantum/agent/common/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quantum/agent/common/config.py b/quantum/agent/common/config.py index a3263b5e9..691ff1ecd 100644 --- a/quantum/agent/common/config.py +++ b/quantum/agent/common/config.py @@ -75,7 +75,8 @@ def get_root_helper(conf): root_helper = conf.root_helper if root_helper is not 'sudo': - LOG.deprecated(_('DEFAULT.root_helper is deprecated!')) + LOG.deprecated(_('DEFAULT.root_helper is deprecated! Please move ' + 'root_helper configuration to [AGENT] section.')) return root_helper return 'sudo' -- 2.45.2