When I have syntax error in python code of an app, where it goes ?

I'm working under apache, same config as production, but MaxRequestsPerChild 1

There are no syntax errors in apache error log or site error log.
What's up ? 

How should I setup things ?

------------ my vhost --------------

<VirtualHost *:80>
        ServerName mysite.ru

        ErrorLog /var/site/mysite/logs/error.log
        CustomLog /var/site/mysite/logs/access.log combined
        DocumentRoot /var/site/mysite/www
        LogLevel debug

        <Location />
                SetHandler python-program
                PythonHandler django.core.handlers.modpython
                SetEnv DJANGO_SETTINGS_MODULE mysite.settings
                PythonDebug On
                PythonPath "['/var/site'] + sys.path"
        </Location>

        # Exceptions from the mod_python hooked onto '/'
        <Location ~ "/(media|admin_media)/">
            SetHandler None
        </Location>

</VirtualHost>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to