drop io.open
authorOrakaro <nhatminh_179@hotmail.com>
Thu, 31 Jul 2014 00:59:34 +0000 (09:59 +0900)
committerOrakaro <nhatminh_179@hotmail.com>
Thu, 31 Jul 2014 00:59:34 +0000 (09:59 +0900)
rainbowstream/config.py
setup.py

index e6c0de2a9e882a26ba62102b2fdcaf1c79e8113b..2a11d3bdc9ea36c23d64d172ef4c73d2f910a28f 100644 (file)
@@ -2,7 +2,6 @@ import json
 import re
 import os
 import os.path
-from io import open
 from collections import OrderedDict
 
 # Regular expression for comments in config file
index da93a011b324c00accd73e7b890356e74fc5145a..8cf886f63a3292f09d3ab0dba70b84497beb0d06 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,4 @@
 from setuptools import setup, find_packages
-from io import open
 import os
 import os.path
 import sys
@@ -33,7 +32,7 @@ if not os.path.isfile(default):
 setup(name='rainbowstream',
       version=version,
       description="A smart and nice Twitter client on terminal.",
-      long_description=open("./README.rst", "r", encoding='utf-8').read(),
+      long_description=open("./README.rst", "r").read(),
       classifiers=[
           "Development Status :: 5 - Production/Stable",
           "Environment :: Console",