(self, host, login, passwd, conn, net)
| 70 | |
| 71 | class wvmNetwork(wvmConnect): |
| 72 | def __init__(self, host, login, passwd, conn, net): |
| 73 | wvmConnect.__init__(self, host, login, passwd, conn) |
| 74 | self.net = self.get_network(net) |
| 75 | |
| 76 | def get_name(self): |
| 77 | return self.net.name() |
nothing calls this directly
no test coverage detected