On Mon, 2010-01-25 at 14:42 -0200, Silvio Sisto wrote:
> I found this string...
> 
> "Cannot set %(field)s to %(value)s. Needed data type: %(datatype)s"
> 
> Do I have to translate the words field, value and datatype?
> 
> Thanks.
> Best regards,
> Silvio Sisto

No, they're used as dictionary keys when doing the string substitution.

For example, the following snippet will print "Yo dawg!":
 print "%(foo)s %(bar)s!" % { "bar": "dawg", "foo": "Yo" }

nick

_______________________________________________
gpodder-devel mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/gpodder-devel

Reply via email to