Ticket #10891: 10891_v0.diff

File 10891_v0.diff, 544 bytes (added by Marc Garcia, 15 years ago)

Patch to show what the problem is

  • django/utils/translation/trans_real.py

     
    266266    translation object to use. If no current translation is activated, the
    267267    message will be run through the default translation object.
    268268    """
     269    message = message.replace('\r\n', '\n')
    269270    global _default, _active
    270271    t = _active.get(currentThread(), None)
    271272    if t is not None:
Back to Top