Anonymous - 2011-04-17

It turns out that in Python 2.6+, you can say 'except Exception as e:,' but in Python 2.5, you have to say 'except Exception, e:.' On line 543 of templating.py in the rulebox module, this is a problem. My server is running Python 2.5, and there was an error because of the difference. I changed it and it works now, but this is just a warning. :)