Strip trailing whitespace

Result of `find -name '*.py' -exec sed -i 's/[ \t]*$//' {} \;`
This commit is contained in:
Ewoud Kohl van Wijngaarden 2011-12-13 14:48:33 +01:00
parent 4f38e78580
commit 303a1108a7
46 changed files with 379 additions and 381 deletions

View File

@ -208,4 +208,3 @@ class TestRotation(TestCase):
response_titles = [d['title'] for d in response_posts] response_titles = [d['title'] for d in response_posts]
response_titles.reverse() response_titles.reverse()
self.assertEquals(response_titles, ['%s' % i for i in range(models.MAX_POSTS - 5, models.MAX_POSTS + 5)]) self.assertEquals(response_titles, ['%s' % i for i in range(models.MAX_POSTS - 5, models.MAX_POSTS + 5)])

View File

@ -46,4 +46,3 @@ class TestPygmentsExample(TestCase):
self.assertEquals(locations, response_locations) self.assertEquals(locations, response_locations)