Perhaps you are trying to do this:
  'text to go here: %s' % ('text',)
?  For that you need a double-quoted string:
  "text to go here: %s" % ('text',)
(or triple-doubles: """ .. """ as you noted).

Jim

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to