summaryrefslogtreecommitdiffstats
path: root/CMakeScripts
diff options
context:
space:
mode:
authorBryce Harrington <bryce@bryceharrington.org>2015-06-06 23:46:56 +0000
committerbryce <bryce@ubuntu.com>2015-06-06 23:46:56 +0000
commitc789288248ba016c81c5bdc736302f3adb81fa25 (patch)
treebe233b5c3f11422e05442b62644b9b27962783ce /CMakeScripts
parentcmake: Drop todo for icons; the install of share takes care of this (diff)
downloadinkscape-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-xCMakeScripts/cmake_consistency_check.py2
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