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
commit7d7e31478855b578b6397f61784df29c1bb98bcf (patch)
tree0046f151b1f17554b45b6321fc0d94b4f492e5bb /scripts/GenerateCaseConvert.py
parent41a4aaf6ac518707850beee6158ab232d1bf7d03 (diff)
downloadscintilla-mirror-7d7e31478855b578b6397f61784df29c1bb98bcf.tar.gz
Backport: Remove automatically generated line end whitespace.
Backport of changeset 6390:51ca7c18e949.
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")