summaryrefslogtreecommitdiff
path: root/isort/isort.py
diff options
context:
space:
mode:
Diffstat (limited to 'isort/isort.py')
-rw-r--r--isort/isort.py17
1 files changed, 13 insertions, 4 deletions
diff --git a/isort/isort.py b/isort/isort.py
index 481d7d14..0acadaf8 100644
--- a/isort/isort.py
+++ b/isort/isort.py
@@ -97,10 +97,19 @@ class SortImports(object):
" or matches a glob in 'skip_glob' setting".format(file_path))
file_contents = None
elif not file_contents:
- self.file_path = file_path
- self.file_encoding = coding_check(file_path)
- with open(file_path, encoding=self.file_encoding, newline='') as file_to_import_sort:
- file_contents = file_to_import_sort.read()
+ file_encoding = coding_check(file_path)
+ with io.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
+ self.file_encoding = file_encoding
+ except UnicodeDecodeError:
+ file_contents = None
+ self.skipped = True
+ if self.config['verbose']:
+ print("WARNING: {} was skipped as it "
+ "couldn't be opened with the given {} encoding".format(file_path,
+ self.file_encoding))
if file_contents is None or ("isort:" + "skip_file") in file_contents:
self.skipped = True