Skip to content

Commit

Permalink
[fix] decoding error in pippinotes
Browse files Browse the repository at this point in the history
  • Loading branch information
stef committed Jul 14, 2012
1 parent b31ebb3 commit c08c282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notes/pippinotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def _initmap(self):
return paths

def pippies2xpaths(self,d2,pos,l,rooturl):
title=d2.title.strip().decode('utf8')
title=d2.title.strip()#.decode('utf8')
for p in pos:
#print title[:30], p, len(self.paths.keys()), self.paths[p+l-1][1],len(self.doc.tokens[p+l])
#print title[:30], p, l, len(self.paths)
Expand Down

0 comments on commit c08c282

Please sign in to comment.