From b63acdfe7123c243b28e15f29e5b7a8487d69221 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 6 Dec 2013 13:06:59 -0500 Subject: [PATCH] Removed a u'' prefix that prevented the docs from building on Python 3.2. --- docs/_ext/djangodocs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_ext/djangodocs.py b/docs/_ext/djangodocs.py index 8946eb063b..7ad058ff11 100644 --- a/docs/_ext/djangodocs.py +++ b/docs/_ext/djangodocs.py @@ -179,7 +179,7 @@ class SnippetWithFilename(Directive): option_spec = {'filename': directives.unchanged_required} def run(self): - code = u'\n'.join(self.content) + code = '\n'.join(self.content) literal = snippet_with_filename(code, code) if self.arguments: