summaryrefslogtreecommitdiffstats
path: root/openstack/common
diff options
context:
space:
mode:
authorSean Dague <sdague@linux.vnet.ibm.com>2012-11-15 18:38:36 -0500
committerSean Dague <sdague@linux.vnet.ibm.com>2012-11-15 18:38:36 -0500
commit90ada0eb5486878b5f12346d92872537de53109a (patch)
tree11e234509fa20628d9e106443d037a3560c0b8f8 /openstack/common
parent11101e6212241a3b706904edd70d257899ce2f86 (diff)
update deprecated stanza
the deprecated stanza from nova had hard coded "Deprecated Config", but is now be used in not config scenarios. Update it to just "Deprecated". Change-Id: Icf86447aea6cd509e4e67fe0be7e9157006410a4
Diffstat (limited to 'openstack/common')
-rw-r--r--openstack/common/log.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/log.py b/openstack/common/log.py
index 319c6e2..8469fe8 100644
--- a/openstack/common/log.py
+++ b/openstack/common/log.py
@@ -174,7 +174,7 @@ class ContextAdapter(logging.LoggerAdapter):
self.log(logging.AUDIT, msg, *args, **kwargs)
def deprecated(self, msg, *args, **kwargs):
- stdmsg = _("Deprecated Config: %s") % msg
+ stdmsg = _("Deprecated: %s") % msg
if CONF.fatal_deprecations:
self.critical(stdmsg, *args, **kwargs)
raise DeprecatedConfig(msg=stdmsg)