chiark / gitweb /
key.c (convflags): Fix error message.
[catacomb-python] / key.c
diff --git a/key.c b/key.c
index 19a57923403ed7f272dc7a0885fb527f4bf080b6..42ea9254cf5a1cc1049b58be0d8c7b17410d09d1 100644 (file)
--- a/key.c
+++ b/key.c
@@ -270,7 +270,7 @@ static int convflags(PyObject *x, void *p)
   rc = 1;
   goto end;
 tyerr:
-  TYERR("expected flag string or flag/mask pair");
+  TYERR("expected flag string or integer bitfield");
 end:
   return (rc);
 }