Hi Guys,

I have just installed webpy 0.23, everything works fine but the
reloader basically only reloads the main file but not all my other
modules. Reverting back to 0.2 and the reloader works just fine.

Here is a sample of my application:

main_site.py:

#!/usr/bin/env python
 import os, web, urllib

os.chdir("/projects/scripts/chiefmall/web/")
urls = (
    '/?', 'search',
    /admin/?', 'list_categories'
}

from admin import *

class search:
    def GET(self):
        pass

then I have a file admin.py:

import web

class list_categories:
    def GET(self):
        pass

Now changing something in admin.py does not get reloaded. I have to
either restart the server or edit and save main_site.py. Sometimes
however even when I edit/save main_site.py, admin.py still does not
get reloaded.

Is anyone experiencing the same problems? Any help would be
appreciated.

Thank you so much,

Alex

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to