On Tue, Feb 8, 2011 at 12:47 PM, Tres Finocchiaro <[email protected]> wrote: > > Is there a way to know if I have python syntax errors? I understand it's > "kind of" compiled, but when I made modifications to other python items, it > wouldn't update immediately, and in some cases break the entire site without > much insight into the errors. For this, I backed up files before modifying > them, but I'm a bit more accustomed to a "^---- Here's your error" > debugging. >
When you change a py file you'll need to restart your app server (unless you're using the django dev server). Template changes should just work with no restart. If you have a python syntax error, you should get a pretty decent error message in your browser -- stack trace, exception details etc. If you come across anything too opaque / confusing, feel free to ask about it. Good luck! --Stuart -- You received this message because you are subscribed to the Google Groups "Satchmo users" 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/satchmo-users?hl=en.
