Skip to content
Snippets Groups Projects
Commit 341ce4fd authored by Stuffed's avatar Stuffed
Browse files

Print out more useful filename in utf8 checker

parent de01abc1
No related branches found
No related tags found
2 merge requests!2047RA rework,!1755Pregmod master
......@@ -7,7 +7,7 @@ WARNING = '\033[93m'
ENDC = '\033[0m'
def myprint(*args):
print(WARNING, filename + ":", ENDC,*args)
print(WARNING, fileinput.filename() + ":", ENDC,*args)
def yield_line_and_islastline(f):
global filename
......@@ -72,6 +72,7 @@ try:
except UnicodeDecodeError as e:
myprint(e)
print(" Hint: In linux, you can get more details about unicode errors by running:")
print(" isutf8", filename)
print(" isutf8", fileinput.filename())
print(" :Note it might be caused by ", filename)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment