Update fix_encoding_pragma.py

This commit is contained in:
John Hu 2015-12-21 21:41:17 +08:00 committed by ushuz
parent 3fa0265235
commit a1f59c6a48
No known key found for this signature in database
GPG key ID: FF4ACDD45B4AEF85

View file

@ -5,7 +5,7 @@ from __future__ import unicode_literals
import argparse
import collections
expected_pragma = b'# -*- coding: utf-8 -*-\n'
expected_pragma = b'# coding: utf-8\n'
def has_coding(line):