tests/test-revlog-ancestry.py
changeset 6923 ebf1462f2145
parent 6872 c7cc40fd74f6
child 8656 284fda4cd093
--- 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,