Every once in a while, we get a stack trace from our production Django servers with this error:

  ...
  File "/apps/mine/views/mine.py", line 481, in my_view
    params = request.REQUEST

  File "/site-packages/django/core/handlers/modpython.py", line 38, in _get_request
    self._request = datastructures.MergeDict(self.POST, self.GET)

  File "/site-packages/django/core/handlers/modpython.py", line 51, in _get_post
    self._load_post_and_files()

  File "/site-packages/django/core/handlers/modpython.py", line 34, in _load_post_and_files
    self._post, self._files = http.QueryDict(self.raw_post_data), datastructures.MultiValueDict()

  File "/site-packages/django/http/__init__.py", line 82, in __init__
    for key, value in parse_qsl((query_string or ''), True): # keep_blank_values=True

TypeError: argument 1 must be string without null bytes, not str


Request repr() unavailable

Does anyone know what causes this, and what to do about it?
-- 
Ned Batchelder, http://nedbatchelder.com

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