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

This commit is contained in:
Tim Graham 2013-12-06 13:06:59 -05:00
parent 362dd68fb2
commit b63acdfe71
1 changed files with 1 additions and 1 deletions

View File

@ -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: