Repository 'blast2html'
hg clone https://toolshed.g2.bx.psu.edu/repos/jankanis/blast2html

Changeset 109:ea3bc0b9a3d9 (2014-07-08)
Previous changeset 108:1faac255ae3c (2014-07-08) Next changeset 110:e17aae23cc1c (2014-07-09)
Commit message:
fix (again) output encoding
modified:
blast2html.py
b
diff -r 1faac255ae3c -r ea3bc0b9a3d9 blast2html.py
--- a/blast2html.py Tue Jul 08 17:05:54 2014 +0200
+++ b/blast2html.py Tue Jul 08 17:51:22 2014 +0200
b
@@ -469,7 +469,7 @@
         # args.output.writelines = fixed_writelines
 
         args.output.close()
-        args.output = io.open(args.output.name, 'w')
+        args.output = io.open(args.output.name, 'w', encoding='utf-8')
     
     templatedir, templatename = path.split(args.template.name)
     args.template.close()