Changeset 167 for trunk/html/__init__.py

Show
Ignore:
Timestamp:
01/29/08 20:24:43 (3 years ago)
Author:
akaihola
Message:

[html] Oops, missing a colon.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/html/__init__.py

    r166 r167  
    88from django.utils.encoding import force_unicode 
    99 
    10 def strip_empty_lines(value) 
     10def strip_empty_lines(value): 
    1111    """Return the given HTML with empty and all-whitespace lines removed.""" 
    1212    return re.sub(r'\n[ \t]*(?=\n)', '', force_unicode(value))