Ticket #12981: tabs.diff

File tabs.diff, 1.2 KB (added by Martin v. Löwis, 14 years ago)
  • django/contrib/formtools/preview.py

    diff -r bae825f22771 -r a944d9466c90 django/contrib/formtools/preview.py
    a b  
    9999
    100100    def process_preview(self, request, form, context):
    101101        """
    102         Given a validated form, performs any extra processing before displaying
    103         the preview page, and saves any extra data in context.
    104         """
    105         pass
     102        Given a validated form, performs any extra processing before displaying
     103        the preview page, and saves any extra data in context.
     104        """
     105        pass
    106106
    107107    def security_hash(self, request, form):
    108108        """
  • django/template/__init__.py

    diff -r bae825f22771 -r a944d9466c90 django/template/__init__.py
    a b  
    432432                        i += 1
    433433                    if i >= len(subject):
    434434                        raise TemplateSyntaxError("Searching for value. Unexpected end of string in column %d: %s" % (i, subject))
    435                 i += 1
     435                i += 1
    436436            return i
    437437
    438438        if i >= len(subject):
Back to Top