when I try to access the admin site Django is complaining aout missing
adminmedia.py which is true.
There is a adminmedia.pyc instead.
svn up does not retrieve the file.
Debug message is:
AttributeError at /admin/
'module' object has no attribute 'register_tag'
Tequest Method: GET
Request URL: http://127.0.0.1:8000/admin/
Exception Type: AttributeError
Exception Value: 'module' object has no attribute 'register_tag'
Exception Location:
C:\soft\django_src\django\templatetags\adminmedia.py in ?, line 16
What is wrong ?
Olivier.
Django is undergoing some rapid changes before the 1.0 release and some
of the files are being relocated in the source tree. Unfortunately the
byte-compiled .pyc files are not managed by subversion and can get left
hanging about in places they aren't meant to be, but where Python will
still find them. The work-around is to manually delete any orphaned
.pyc files such as adminmedia.pyc (or just all .pyc files as they will
be regenerated as needed).
Kieran