Changes between Version 1 and Version 2 of PsycoMiddleware


Ignore:
Timestamp:
Jan 22, 2007, 5:50:02 PM (17 years ago)
Author:
Stephen McDonald
Comment:

Changed "from psyco import psyco" to "import psyco"

Legend:

Unmodified
Added
Removed
Modified
  • PsycoMiddleware

    v1 v2  
    88    def process_request(self, request):
    99        try:
    10             from psyco import psyco
     10            import psyco
    1111            psyco.profile()
    1212        except ImportError:
Back to Top