Commit b63acdfe authored by Tim Graham's avatar Tim Graham
Browse files

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

parent 362dd68f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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: