summaryrefslogtreecommitdiff
path: root/isort/isort.py
diff options
context:
space:
mode:
Diffstat (limited to 'isort/isort.py')
-rw-r--r--isort/isort.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isort/isort.py b/isort/isort.py
index 0acadaf8..76eac83d 100644
--- a/isort/isort.py
+++ b/isort/isort.py
@@ -98,7 +98,7 @@ class SortImports(object):
file_contents = None
elif not file_contents:
file_encoding = coding_check(file_path)
- with io.open(file_path, encoding=file_encoding, newline='') as file_to_import_sort:
+ with open(file_path, encoding=file_encoding, newline='') as file_to_import_sort:
try:
file_contents = file_to_import_sort.read()
self.file_path = file_path