summaryrefslogtreecommitdiff
path: root/plugins/bootimg/python/format.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/bootimg/python/format.c')
-rw-r--r--plugins/bootimg/python/format.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/bootimg/python/format.c b/plugins/bootimg/python/format.c
index bf0cf6d..a5dd3bc 100644
--- a/plugins/bootimg/python/format.c
+++ b/plugins/bootimg/python/format.c
@@ -81,7 +81,8 @@ static PyObject *py_bootimg_format_new(PyTypeObject *type, PyObject *args, PyObj
"\n" \
" BootImgFormat(content)" \
"\n" \
- "Where content is the binary content of a file usually named 'boot.img'."
+ "Where content is the binary content of a file usually named 'boot.img'," \
+ " provided as a pychrysalide.analysis.BinContent instance."
ret = PyArg_ParseTuple(args, "O&", convert_to_binary_content, &content);
if (!ret) return NULL;