This commit is contained in:
Brian Waldon 2011-07-29 15:58:41 -04:00
parent 57cda5b254
commit 3d9f5b5610
1 changed files with 1 additions and 1 deletions

View File

@ -157,4 +157,4 @@ Internationalization (i18n) Strings
Example:
msg = _("The server with id %(s_id)s has no key %(m_key)s")
LOG.error(msg % (s_id="1234, m_key="imageId"))
LOG.error(msg % {"s_id": "1234", "m_key": "imageId"})