diff tests/test-revlog-ancestry.py @ 6923:ebf1462f2145

strip trailing whitespace, replace tabs by spaces
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Thu, 21 Aug 2008 11:35:17 +0200
parents c7cc40fd74f6
children 284fda4cd093
line wrap: on
line diff
--- a/tests/test-revlog-ancestry.py	Thu Aug 21 10:55:24 2008 +0200
+++ b/tests/test-revlog-ancestry.py	Thu Aug 21 11:35:17 2008 +0200
@@ -49,26 +49,26 @@
     # Ancestors
     print 'Ancestors of 5'
     for r in repo.changelog.ancestors(5):
-        print r, 
+        print r,
 
     print '\nAncestors of 6 and 5'
     for r in repo.changelog.ancestors(6, 5):
-        print r, 
+        print r,
 
     print '\nAncestors of 5 and 4'
     for r in repo.changelog.ancestors(5, 4):
-        print r, 
+        print r,
 
     # Descendants
     print '\n\nDescendants of 5'
     for r in repo.changelog.descendants(5):
-        print r, 
+        print r,
 
     print '\nDescendants of 5 and 3'
     for r in repo.changelog.descendants(5, 3):
-        print r, 
+        print r,
 
     print '\nDescendants of 5 and 4'
     for r in repo.changelog.descendants(5, 4):
-        print r, 
+        print r,