aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/GenerateCaseConvert.py
diff options
context:
space:
mode:
authorZufu Liu <unknown>2017-09-14 13:46:04 +1000
committerZufu Liu <unknown>2017-09-14 13:46:04 +1000
commitdce400533381d1b5bec8a9bb0e809d1cbb8a66d9 (patch)
treeb470006217b904f1c670a90eb8477c172c287aec /scripts/GenerateCaseConvert.py
parentf2b69582ad2e82c506294ae7644be0bf5da88763 (diff)
downloadscintilla-mirror-dce400533381d1b5bec8a9bb0e809d1cbb8a66d9.tar.gz
Remove automatically generated line end whitespace.
Diffstat (limited to 'scripts/GenerateCaseConvert.py')
-rw-r--r--scripts/GenerateCaseConvert.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/GenerateCaseConvert.py b/scripts/GenerateCaseConvert.py
index 068a068cd..548cc20e0 100644
--- a/scripts/GenerateCaseConvert.py
+++ b/scripts/GenerateCaseConvert.py
@@ -111,10 +111,10 @@ def updateCaseConvert():
rangeGroups, nonRanges = groupRanges(symmetrics)
print(len(rangeGroups), "ranges")
- rangeLines = ["%d,%d,%d,%d, " % x for x in rangeGroups]
+ rangeLines = ["%d,%d,%d,%d," % x for x in rangeGroups]
print(len(nonRanges), "non ranges")
- nonRangeLines = ["%d,%d, " % x for x in nonRanges]
+ nonRangeLines = ["%d,%d," % x for x in nonRanges]
print(len(symmetrics), "symmetric")