diff options
-rwxr-xr-x | Tools/scripts/pdeps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/pdeps.py b/Tools/scripts/pdeps.py index 4e8e930..ab0040f 100755 --- a/Tools/scripts/pdeps.py +++ b/Tools/scripts/pdeps.py @@ -64,7 +64,7 @@ m_from = re.compile('^[ \t]*import[ \t]+([^#]+)') # Collect data from one file # def process(filename, table): - with open(filename) as fp: + with open(filename, encoding='utf-8') as fp: mod = os.path.basename(filename) if mod[-3:] == '.py': mod = mod[:-3] |