On 2/12/06, Simon Belak <[EMAIL PROTECTED]> wrote: > > Is there any good reason why there are import statements mixed with code > in controllers.py, violating PEP8? > > While having import warning local for deprecation warnings is not a bad > idea (since it is only temporary), but why the rest?
Try moving them and see :) Some of those imports couldn't be at the top because of circular import problems. Kevin

