diff options
-rw-r--r-- | pastepy.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -156,7 +156,7 @@ class Paste(object): session.close() self.start_response('200 OK', [('Content-Type', 'text/plain')]) - return [str(paste.text)] + return [paste.text.encode('utf8')] def highlight_stylesheet(self): self.start_response('200 OK', [('Content-Type', 'text/css')]) |