-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello,
I use django with python 2.5. I already got the same error during tutorial step 2, but for whatever reason noone answered my question about this here... Now the same error occured on tut4. It happended, when I added the generic views. Here my urlconf: from django.conf.urls.defaults import * from mysite.polls.models import Poll info_dict = { 'queryset': Poll.objects.all(), } urlpatterns = patterns('', (r'^$', 'django.views.generic.list_detail.object_list', info_dict), (r'(?P<object_id>\d+)/$', 'django.views.generic.list_detail.object_detail', info_dict), (r'(?P<object_id>\d+)/results/$', 'django.views.generic.list_detail.object_detail', dict(info_dict, template_name='polls/results.html')), (r'(?P<poll_id>\d+)/vote/$', 'mysite.polls.views.vote'), ) It happens, when I call http://127.0.0.1/polls/ Traceback (most recent call last): File "/usr/lib64/python2.5/site-packages/django/core/handlers/base.py" in get_response 77. response = callback(request, *callback_args, **callback_kwargs) File "/usr/lib64/python2.5/site-packages/django/views/generic/list_detail.py" in object_list 75. }, context_processors) File "/usr/lib64/python2.5/site-packages/django/template/context.py" in __init__ 100. self.update(processor(request)) File "/usr/lib64/python2.5/site-packages/django/core/context_processors.py" in auth 18. 'user': request.user, File "/usr/lib64/python2.5/site-packages/django/contrib/auth/__init__.py" in get_user 71. user_id = request.session[SESSION_KEY] File "/usr/lib64/python2.5/site-packages/django/contrib/sessions/middleware.py" in __getitem__ 20. return self._session[key] File "/usr/lib64/python2.5/site-packages/django/contrib/sessions/middleware.py" in _get_session 60. self._session_cache = s.get_decoded() File "/usr/lib64/python2.5/site-packages/django/contrib/sessions/models.py" in get_decoded 61. encoded_data = base64.decodestring(self.session_data) File "/usr/lib64/python2.5/base64.py" in decodestring 321. return binascii.a2b_base64(s) TypeError at /test/polls/ a2b_base64() argument 1 must be string or read-only character buffer, not array.array I really would apreciate help. mfg Paul Rauch -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org iQIVAwUBRfmO6hG67lyyQrltAQLR5A//Xx0mbAmTxL2Lw3ywZhU0dzn05zU9ORCr 7eEtmhaUBiKYFam+DcOaGnUc0uuJEnIMR57Adu+iNNosvKm82iFRbSO+NwlLVkT/ 28me/kUfSlPnLCXiOtG+OTPE7rTZyS0r3PVH+EZdgnm/gXMlGvklYICaO1KtseUC PKzAojFLnnUbhjcH0DW3zwPYAflnQ+mvI3pfMprnzd817P68yU8igiS2Fh62kcoz FWawKh1Njl6Z43qSVIAlIlnz2s4fHV56CyxvZ4S5/jW68fQZG+4pIusHFwOT/SHP e/UHQJqELjewrBkw3j29rdzVKyrgJrUxDNPG3jEM+O4kJ8DbVp2goF1cCkGQp3vI rRHcf/Sw0RyPc/0ebNDZx9SRcP7ohCiTZMn6tH8hVGmJqprQVyPOjAqVvO2GySJl uswbQjeny+qjV3t/U3C9qrHEiRvWPAIUvk/SUAmIilkNSYgQEL87wD6/GTA0TMWq 3ldRiuPl0JW+pJkdCZi8D0GzbV4WcYyafgtM9xh5AjixuEePP6pR0O3RVCJqj+TD TK6Som/JO2y/S/TolQmC2rs3s/oaVhAp15LTX5l/YvkV55I64regg+scDwS/hMO9 QZ21yQbY0H0FqAQ3BNMWxrAbSvCD68OAdax3tsq1Z+hh5F+DWoKYUsYRzD03mXZN 6g1e1xlIk4s= =lsUC -----END PGP SIGNATURE----- --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---