2
0
forked from Ivasoft/DSView

Do not print the log that the decoder can't find attribute

This commit is contained in:
dreamsourcelabTAI
2023-05-30 18:25:30 +08:00
parent 1f56410405
commit ecdafe752f

View File

@@ -188,7 +188,6 @@ SRD_PRIV int py_dictitem_as_str(PyObject *py_obj, const char *key,
}
if (!(py_value = PyDict_GetItemString(py_obj, key))) {
srd_detail("Dictionary has no attribute '%s'.", key);
goto err;
}
@@ -226,7 +225,6 @@ SRD_PRIV int py_dictitem_to_int(PyObject *py_obj, const char *key)
}
if (!(py_value = PyDict_GetItemString(py_obj, key))) {
srd_detail("Dictionary has no attribute '%s'.", key);
goto err;
}