From 6140fbf7f12db17b61312571192eccc7d103e22b Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Mon, 23 Jan 2012 03:08:06 +0000 Subject: [PATCH] key.c (convflags): Fix error message. There's only one integer expected really. --- key.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/key.c b/key.c index 19a5792..42ea925 100644 --- 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); } -- 2.11.0