Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/clean_trailing_whitespace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/clean_trailing_whitespace.py b/scripts/clean_trailing_whitespace.py
index 13532b2..57e793c 100644
--- a/scripts/clean_trailing_whitespace.py
+++ b/scripts/clean_trailing_whitespace.py
@@ -15,7 +15,7 @@ r = open(bakName)
w = open(fName, "w" )
for line in r:
line = line[:-1]
- while len(line) and (line[-1] == " " or line[-1] == " "):
+ while len(line) and (line[-1] == " " or line[-1] == " "):
line = line[:-1]
w.write(line+"\n")