Skip to content
Snippets Groups Projects
Commit e5754ae9 authored by Shaun Crampton's avatar Shaun Crampton
Browse files

Fix method name mismatch for setDefaultRoute.

parent 294bbad4
No related branches found
No related tags found
No related merge requests found
...@@ -493,7 +493,7 @@ def config( self, mac=None, ip=None, ...@@ -493,7 +493,7 @@ def config( self, mac=None, ip=None,
r = {} r = {}
self.setParam( r, 'setMAC', mac=mac ) self.setParam( r, 'setMAC', mac=mac )
self.setParam( r, 'setIP', ip=ip ) self.setParam( r, 'setIP', ip=ip )
self.setParam( r, 'defaultRoute', defaultRoute=defaultRoute ) self.setParam( r, 'setDefaultRoute', defaultRoute=defaultRoute )
# This should be examined # This should be examined
self.cmd( 'ifconfig lo ' + lo ) self.cmd( 'ifconfig lo ' + lo )
return r return r
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment