Fix ipBase option misspelling

It's arguable that maybe might want to support 'ipbase' as well
since it's used in --ipbase and it's easier to type. However,
ipBase is the spelling used in Mininet, so we should be
consistent.

Change-Id: I2f61df0d2d09abf652c5f06ef9c734a55159a7de
diff --git a/tools/dev/mininet/onos.py b/tools/dev/mininet/onos.py
index b3d9b4b..9640837 100755
--- a/tools/dev/mininet/onos.py
+++ b/tools/dev/mininet/onos.py
@@ -277,7 +277,7 @@
                 args = ( 1, )
         if not isinstance( topo, Topo ):
             topo = RenamedTopo( topo, *args, hnew='onos', **kwargs )
-        ipBase = kwargs.pop( 'ipbase', '192.168.123.0/24' )
+        ipBase = kwargs.pop( 'ipBase', '192.168.123.0/24' )
         super( ONOSCluster, self ).__init__( name, inNamespace=False )
         fixIPTables()
         self.env = initONOSEnv()