On Wed, Jun 17, 2009 at 2:46 PM, dj <d.a.aberna...@gmail.com> wrote: > > Defined the this model: > > [snip] > When the data table (sqlite) is empty, I can save an instance of this > object with no errors. > However, once there is an existing instance of the object in the data > table, saving another > instance of this object results in the following error: > > TypeError at /ci/userManagement/modify_request/ > > expected string or buffer > > Request Method: POST > Request URL: http://127.0.0.1:8000/ci/userManagement/modify_request/ > Exception Type: TypeError > Exception Value: > > expected string or buffer > > Exception Location: C:\python26\lib\re.py in findall, line 175 > Python Executable: C:\python26\python.exe > Python Version: 2.6.0 > [snip] > Does anyone have any idea as to why ? (Complete trace follows) > > [snip] > Traceback: > File "C:\python26\lib\site-packages\django\core\handlers\base.py" in > get_response > 86. response = callback(request, *callback_args, > **callback_kwargs) > File "C:\python26\lib\site-packages\django\contrib\auth\decorators.py" > in __call__ > 67. return self.view_func(request, *args, **kwargs) > File "H:\ci\..\ci\security\views.py" in modify_request > 1007. obj.save() > File "C:\python26\lib\site-packages\django\db\models\base.py" in save > 307. self.save_base(force_insert=force_insert, > force_update=force_update) > File "C:\python26\lib\site-packages\django\db\models\base.py" in > save_base > 324. signals.pre_save.send(sender=self.__class__, > instance=self, raw=raw) > File "C:\python26\lib\site-packages\django\dispatch\dispatcher.py" in > send > 148. response = receiver(signal=self, sender=sender, > **named) > File "H:\ci\..\ci\urls.py" in my_handler > 148. if re.findall(r'\d+$', obj.slug): > File "C:\python26\lib\re.py" in findall > 175. return _compile(pattern, flags).findall(string) > > Exception Type: TypeError at /ci/userManagement/modify_request/ > Exception Value: expected string or buffer > > Traceback is showing that you have a pre_save handler being called, and it is that pre_save handler that is running into trouble. Specifically it's having trouble with an attempt to do:
re.findall('\d+$', obj.slug) obj.slug is going to be the problem here, as that's the only variable on that line. Most likely you've got an object with no slug, meaning you're passing None to that re.findall, which would result in the exception you note. Did you create an object with no slug (you've defined it with blank=True, null=True, so you've allowed for no value in the model definition) but then not allow for that possibility in the pre_save handler? Karen --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---