summaryrefslogtreecommitdiff
path: root/portato/ipc.pyx
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-08-15 15:53:02 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-08-15 15:53:02 +0200
commitedb012736afad95e069674fbe8ce9db192d39c25 (patch)
tree76ce47c2932540c0646aadb2ca9c27fa106eea34 /portato/ipc.pyx
parent20f6015a96331575b3b402425f4c42eb91912cf1 (diff)
downloadportato-edb012736afad95e069674fbe8ce9db192d39c25.tar.gz
portato-edb012736afad95e069674fbe8ce9db192d39c25.tar.bz2
portato-edb012736afad95e069674fbe8ce9db192d39c25.zip
Typo
Diffstat (limited to 'portato/ipc.pyx')
-rw-r--r--portato/ipc.pyx2
1 files changed, 1 insertions, 1 deletions
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 = <msg_data*>PyMem_Malloc(sizeof(msg_data) + size)