From ece147f7690e4ebfed0079b583df03080caca1b0 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Wed, 18 Aug 2010 00:40:49 +0200 Subject: Fixed error in unicode handling. --- pastepy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pastepy.py b/pastepy.py index 683d300..0451f68 100644 --- a/pastepy.py +++ b/pastepy.py @@ -123,7 +123,7 @@ class Paste(object): except: # No cache found, generate it. paste = session.query(db.Paste).filter_by(hash = hash).one() try: - lexername, text = get_formatted(paste.syntax, paste.text if type(str) == unicode else paste.text.decode('utf8')) + lexername, text = get_formatted(paste.syntax, paste.text if type(paste.text) == unicode else paste.text.decode('utf8')) except: return self.message('Could not find the lexer "%s".' % paste.syntax, 'Error') cache = db.Cache(hash, lexername, text) -- cgit v1.2.3