Removed hardcoded utf-8 BOM, used value from codecs instead.

This commit is contained in:
Jon Dufresne 2015-10-25 09:27:10 -07:00
parent 35440ceab7
commit 5d35b53c36
1 changed files with 1 additions and 2 deletions

View File

@ -12,8 +12,7 @@ from django.utils._os import npath, upath
def has_bom(fn): def has_bom(fn):
with open(fn, 'rb') as f: with open(fn, 'rb') as f:
sample = f.read(4) sample = f.read(4)
return (sample[:3] == b'\xef\xbb\xbf' or return sample.startswith((codecs.BOM_UTF8, codecs.BOM_UTF16_LE, codecs.BOM_UTF16_BE))
sample.startswith((codecs.BOM_UTF16_LE, codecs.BOM_UTF16_BE)))
def is_writable(path): def is_writable(path):