diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-08-15 15:53:02 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-08-15 15:53:02 +0200 |
commit | edb012736afad95e069674fbe8ce9db192d39c25 (patch) | |
tree | 76ce47c2932540c0646aadb2ca9c27fa106eea34 | |
parent | 20f6015a96331575b3b402425f4c42eb91912cf1 (diff) | |
download | portato-edb012736afad95e069674fbe8ce9db192d39c25.tar.gz portato-edb012736afad95e069674fbe8ce9db192d39c25.tar.bz2 portato-edb012736afad95e069674fbe8ce9db192d39c25.zip |
Typo
Diffstat (limited to '')
-rw-r--r-- | portato/ipc.pyx | 2 |
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) |