Fixes a small syntax error in the doc examples

Change-Id: I2683c22f77b17ca6f7be66fd9ba8ded0e547d981
This commit is contained in:
David Stanek
2014-09-11 17:44:21 +00:00
parent e36ad255ed
commit f721da76f2

View File

@@ -97,7 +97,7 @@ to create partially translated messages. For example, **do not do
this**::
# WRONG
raise ValueError(_('some message') + ': variable=%s') % variable)
raise ValueError(_('some message') + ': variable=%s' % variable)
Instead, use this style::