Django

Code

Changeset 8746

Show
Ignore:
Timestamp:
08/30/08 14:25:40 (3 months ago)
Author:
jacob
Message:

Fixed #8710: removed a few stray tabs. Thanks, gkelly.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/sites/tests.py

    r8160 r8746  
    33>>> from django.conf import settings 
    44>>> Site(id=settings.SITE_ID, domain="example.com", name="example.com").save() 
    5          
     5 
    66>>> # Make sure that get_current() does not return a deleted Site object. 
    77>>> s = Site.objects.get_current() 
  • django/trunk/django/utils/text.py

    r7814 r8746  
    208208    >>> list(smart_split(r'This is "a person\'s" test.')) 
    209209    [u'This', u'is', u'"a person\\\'s"', u'test.'] 
    210        >>> list(smart_split(r"Another 'person\'s' test."))  
    211        [u'Another', u"'person's'", u'test.'] 
    212        >>> list(smart_split(r'A "\"funky\" style" test.'))  
    213        [u'A', u'""funky" style"', u'test.'] 
     210    >>> list(smart_split(r"Another 'person\'s' test."))  
     211    [u'Another', u"'person's'", u'test.'] 
     212    >>> list(smart_split(r'A "\"funky\" style" test.'))  
     213    [u'A', u'""funky" style"', u'test.'] 
    214214    """ 
    215215    text = force_unicode(text) 
  • django/trunk/tests/regressiontests/templates/tests.py

    r8716 r8746  
    721721 
    722722            # Set up a base template to extend 
    723                'inheritance26': ("no tags", {}, 'no tags'), 
    724  
    725                # Inheritance from a template that doesn't have any blocks 
    726                'inheritance27': ("{% extends 'inheritance26' %}", {}, 'no tags'), 
     723            'inheritance26': ("no tags", {}, 'no tags'), 
     724 
     725            # Inheritance from a template that doesn't have any blocks 
     726            'inheritance27': ("{% extends 'inheritance26' %}", {}, 'no tags'), 
    727727 
    728728            ### I18N ##################################################################