Added two spaces before in-line # comments.

This commit is contained in:
Bob Lantz
2010-03-24 14:41:40 -07:00
parent 353411422e
commit cf6f67045b
6 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ class TreeTopo( Topo ):
for i in range( 0, fanout ):
child = n + 1
self.add_edge( me, child )
n = self.addTree( child, depth-1, fanout )
n = self.addTree( child, depth - 1, fanout )
return n
# pylint: enable-msg=W0612