1
0
mirror of https://gitlab.com/libvirt/libvirt-python.git synced 2025-07-30 23:41:52 +03:00

Fix syntax error with missing ; and too many )

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrangé
2019-06-20 12:48:07 +01:00
parent a4de6e2ed8
commit a57c86593e

View File

@ -10032,7 +10032,7 @@ libvirt_virNetworkPortGetParameters(PyObject *self ATTRIBUTE_UNUSED,
if (rc < 0)
return VIR_PY_NONE;
dict = getPyVirTypedParameter(params, nparams)))
dict = getPyVirTypedParameter(params, nparams);
virTypedParamsFree(params, nparams);
return dict;