From edb012736afad95e069674fbe8ce9db192d39c25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sat, 15 Aug 2009 15:53:02 +0200 Subject: Typo --- portato/ipc.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'portato/ipc.pyx') diff --git a/portato/ipc.pyx b/portato/ipc.pyx index 1f8603d..13743bc 100644 --- a/portato/ipc.pyx +++ b/portato/ipc.pyx @@ -106,7 +106,7 @@ cdef class MessageQueue (object): raise ValueError("type must be > 0") if size >= MAX_MESSAGE_SIZE: - raise ValueError("Message must be smaller than %d", MAX_MESSAGE_SIZE) + raise ValueError("Message must be smaller than %d" % MAX_MESSAGE_SIZE) msg = PyMem_Malloc(sizeof(msg_data) + size) -- cgit v1.2.3