summaryrefslogtreecommitdiff
path: root/docs/_ext/djangodocs.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-12-06 13:06:59 -0500
committerTim Graham <timograham@gmail.com>2013-12-06 13:06:59 -0500
commitb63acdfe7123c243b28e15f29e5b7a8487d69221 (patch)
tree0f2145c0cf0302213310a262bd432ed81b8b603d /docs/_ext/djangodocs.py
parent362dd68fb20be195462af22448416c9895ce7df7 (diff)
downloaddjango-b63acdfe7123c243b28e15f29e5b7a8487d69221.tar.gz
Removed a u'' prefix that prevented the docs from building on Python 3.2.
Diffstat (limited to 'docs/_ext/djangodocs.py')
-rw-r--r--docs/_ext/djangodocs.py2
1 files changed, 1 insertions, 1 deletions
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: