Kaydet (Commit) b63acdfe authored tarafından Tim Graham's avatar Tim Graham

Removed a u'' prefix that prevented the docs from building on Python 3.2.

üst 362dd68f
...@@ -179,7 +179,7 @@ class SnippetWithFilename(Directive): ...@@ -179,7 +179,7 @@ class SnippetWithFilename(Directive):
option_spec = {'filename': directives.unchanged_required} option_spec = {'filename': directives.unchanged_required}
def run(self): def run(self):
code = u'\n'.join(self.content) code = '\n'.join(self.content)
literal = snippet_with_filename(code, code) literal = snippet_with_filename(code, code)
if self.arguments: if self.arguments:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment