Commit 9b00b87c authored by Justin Bronn's avatar Justin Bronn
Browse files

Fixed #10655 -- Who uses 5-space indentation anyways? Thanks to Andrew Badr...

Fixed #10655 -- Who uses 5-space indentation anyways?  Thanks to Andrew Badr for the ticket & patch.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@10186 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 39ff4c9e
Loading
Loading
Loading
Loading
+17 −18
Original line number Diff line number Diff line
@@ -261,4 +261,3 @@ def unescape_string_literal(s):
    quote = s[0]
    return s[1:-1].replace(r'\%s' % quote, quote).replace(r'\\', '\\')
unescape_string_literal = allow_lazy(unescape_string_literal)