Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed unnecessary comments/spaces
  • Loading branch information
darshanthaker committed Aug 5, 2014
commit 1e6649ce8e82e5bcf4fab9ed331ff8075d72099b
1 change: 0 additions & 1 deletion examples/test/test_fattree.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def testFatTreePing( self ):
p.wait()
self.assertEqual( percent, 0 )

#Borrowed from ripl/ripl/test/test_dctopo.py
def testFatTreeTopo( self ):
k = 4
fanout = 2
Expand Down
2 changes: 1 addition & 1 deletion mininet/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ def start( self ):
if self.cdir is not None:
self.cmd( 'cd ' + self.cdir )
self.cmd( self.command + ' ' + self.cargs % self.port +
' 1>' + cout + ' 2>' + cout + ' &' )
' 1>' + cout + ' 2>' + cout + '&' )
self.execed = False

def stop( self ):
Expand Down