diff options
author | Tim Graham <timograham@gmail.com> | 2013-12-06 13:06:59 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2013-12-06 13:06:59 -0500 |
commit | b63acdfe7123c243b28e15f29e5b7a8487d69221 (patch) | |
tree | 0f2145c0cf0302213310a262bd432ed81b8b603d /docs/_ext/djangodocs.py | |
parent | 362dd68fb20be195462af22448416c9895ce7df7 (diff) | |
download | django-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.py | 2 |
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: |