diff options
| author | Sean Dague <sdague@linux.vnet.ibm.com> | 2012-11-15 18:38:36 -0500 |
|---|---|---|
| committer | Sean Dague <sdague@linux.vnet.ibm.com> | 2012-11-15 18:38:36 -0500 |
| commit | 90ada0eb5486878b5f12346d92872537de53109a (patch) | |
| tree | 11e234509fa20628d9e106443d037a3560c0b8f8 /openstack | |
| parent | 11101e6212241a3b706904edd70d257899ce2f86 (diff) | |
| download | oslo-90ada0eb5486878b5f12346d92872537de53109a.tar.gz oslo-90ada0eb5486878b5f12346d92872537de53109a.tar.xz oslo-90ada0eb5486878b5f12346d92872537de53109a.zip | |
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')
| -rw-r--r-- | openstack/common/log.py | 2 |
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) |
