magic-removal: Negligible spacing fix

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1805 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-12-30 23:26:46 +00:00
parent 8921893576
commit c3aa635650
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ class Model(object):
connection.commit()
# Run any post-save hooks.
dispatcher.send(signal=signals.pre_save, sender = self.__class__, instance = self )
dispatcher.send(signal=signals.pre_save, sender=self.__class__, instance=self)
if hasattr(self, '_post_save'):
self._post_save()