From 4c7b2d202c1f98a7ee43f3fc19a16e95d8f3214b Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Thu, 29 Jan 2015 23:28:22 +0100 Subject: [PATCH] cosmetic fixes --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0cdbdefe4..a2a4fd9e9 100755 --- a/setup.py +++ b/setup.py @@ -1,13 +1,13 @@ #!/usr/bin/env python +import codecs import os import re -import codecs from setuptools import setup def read_file(filename, encoding='utf8'): - """read unicode from given file""" + """Read unicode from given file.""" with codecs.open(filename, encoding=encoding) as fd: return fd.read()