From 34df2f3075dad2b2a91d3ad2f7d5201d73ad07b9 Mon Sep 17 00:00:00 2001 From: amartin Date: Fri, 09 Feb 2007 01:58:04 +0000 Subject: track delete/duplicate, note delete/duplicate, page predrawing, misc bug fixes --- (limited to 'scripts') 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") -- cgit v0.9.1