Ticket #6783: simple_patch.diff

File simple_patch.diff, 451 bytes (added by yazzgoth, 16 years ago)
  • django/db/models/fields/__init__.py

     
    669669
    670670    def _format(self, value):
    671671        if isinstance(value, basestring):
    672             return value
     672            return value.replace(",", ".")
    673673        else:
    674674            return self.format_number(value)
    675675
Back to Top