Skip to content

Commit

Permalink
Fix UTF8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
ar0ch committed Apr 22, 2017
1 parent 9519d79 commit 15ee8b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup

from os import path
here = path.abspath(path.dirname(__file__))
long_description="Fast k-mer based tool for alignment and assembly-free multi locus sequence typing (MLST) directly from genome sequencing reads."
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
Expand Down
1 change: 1 addition & 0 deletions stringMLST.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import getopt
import sys
import logging
Expand Down

0 comments on commit 15ee8b2

Please sign in to comment.