Django / Python UserWarning error

I keep getting this error / warning, which is annoying and I was wondering if I can fix this, but I'm not sure where to start (I'm a newbie):

/home/simi/workspace/hssn_svn/hssn/../hssn/log/loggers.py:28: UserWarning: ERROR: Could not configure logging
  warnings.warn('ERROR: Could not configure logging', UserWarning)

      

I get this when I do this:

python manage.py runserver
python manage.py syncdb
python manane.py shell

      

Any guidance is greatly appreciated.

Thanks, --simi

0


a source to share


1 answer


You have write permissions for all files in the application you are working with. Also make sure you have everything in settings.py correct, make sure the paths specified exist and you have permissions.



+1


a source







All Articles