On Mar 22, 7:31 am, Brian Blais <[EMAIL PROTECTED]> wrote: > s=s+"this" > s=s+"that"
minor nitpicking, but this would be less ugly if as s += "this" instead of s = s + "this" :P but yeah, I think the cleanest way to do this is to factor it entirely out into templates... that way you eliminate both the s += statements and the prints - all you have is a call to render the template with the relevant content... but of course, that is just my opinion, and as mentioned, anyone can do their own thing. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
