Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJames <olpc@localhost.localdomain>2007-02-17 03:45:23 (GMT)
committer James <olpc@localhost.localdomain>2007-02-17 03:45:23 (GMT)
commitee0904a24c1b7d6c2f66578607d5a4e7a8e81ab8 (patch)
tree810da49fc3c3c0fcce53de2547684ef4c1dcf45c /scripts
parent1bbaaac5b15bdf69e720e15930b3c8bff7d4f78a (diff)
parentd49ef42a259304a108957c103705d45c47d4956e (diff)
merging
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")