diff options
| author | Bryce Harrington <bryce@bryceharrington.org> | 2015-06-06 23:46:56 +0000 |
|---|---|---|
| committer | bryce <bryce@ubuntu.com> | 2015-06-06 23:46:56 +0000 |
| commit | c789288248ba016c81c5bdc736302f3adb81fa25 (patch) | |
| tree | be233b5c3f11422e05442b62644b9b27962783ce /CMakeScripts | |
| parent | cmake: Drop todo for icons; the install of share takes care of this (diff) | |
| download | inkscape-c789288248ba016c81c5bdc736302f3adb81fa25.tar.gz inkscape-c789288248ba016c81c5bdc736302f3adb81fa25.zip | |
cmake: Drop unrecognized 'encoding' option to open()
If encoding remains a problem, it'll make itself known soon enough. For
now, this is preventing this script from executing.
(bzr r14196)
Diffstat (limited to 'CMakeScripts')
| -rwxr-xr-x | CMakeScripts/cmake_consistency_check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeScripts/cmake_consistency_check.py b/CMakeScripts/cmake_consistency_check.py index 1e225d4ed..53026910e 100755 --- a/CMakeScripts/cmake_consistency_check.py +++ b/CMakeScripts/cmake_consistency_check.py @@ -87,7 +87,7 @@ def cmake_get_src(f): sources_h = [] sources_c = [] - filen = open(f, "r", encoding="utf8") + filen = open(f, "r") it = iter(filen) found = False i = 0 |
