hadong has uploaded a new change for review. Change subject: Fix typeerror "takes exactly 1 argument(2 given)" in identify() of BridgedNIC ......................................................................
Fix typeerror "takes exactly 1 argument(2 given)" in identify() of BridgedNIC Change-Id: I5f6e0e9cd035862dc9a433102c07fc0fb93d6970 Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1067861 Signed-off-by: hadong <[email protected]> --- M src/ovirt/node/utils/network.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/56/24856/1 diff --git a/src/ovirt/node/utils/network.py b/src/ovirt/node/utils/network.py index bd04142..7b73e72 100644 --- a/src/ovirt/node/utils/network.py +++ b/src/ovirt/node/utils/network.py @@ -409,7 +409,7 @@ return self.slave_nic.vlanids() def identify(self): - self.slave_nic.identify(self) + self.slave_nic.identify() def __str__(self): pairs = {"bridge": self.bridge_nic, -- To view, visit http://gerrit.ovirt.org/24856 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I5f6e0e9cd035862dc9a433102c07fc0fb93d6970 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-node Gerrit-Branch: master Gerrit-Owner: hadong <[email protected]> _______________________________________________ node-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/node-patches
