From c0574acbc663094fbb722cd6bdc97b02e7111100 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Fri, 1 Sep 2006 16:24:46 +0100 Subject: [PATCH] _dbus_bindings.pyx: Spell "negative" correctly --- dbus/_dbus_bindings.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dbus/_dbus_bindings.pyx b/dbus/_dbus_bindings.pyx index a53a8d0..15427e9 100644 --- a/dbus/_dbus_bindings.pyx +++ b/dbus/_dbus_bindings.pyx @@ -177,7 +177,7 @@ class UInt16(int): """An unsigned 16-bit integer""" def __init__(self, value): if value < 0: - raise TypeError('Unsigned integers must not have a negitive value') + raise TypeError('Unsigned integers must not have a negative value') int.__init__(self, value) class Int32(int): @@ -187,7 +187,7 @@ class UInt32(long): """An unsigned 32-bit integer""" def __init__(self, value): if value < 0: - raise TypeError('Unsigned integers must not have a negitive value') + raise TypeError('Unsigned integers must not have a negative value') long.__init__(self, value) class Int64(long): @@ -197,7 +197,7 @@ class UInt64(long): """An unsigned 64-bit integer""" def __init__(self, value): if value < 0: - raise TypeError('Unsigned integers must not have a negitive value') + raise TypeError('Unsigned integers must not have a negative value') long.__init__(self, value) class Double(float): -- 2.11.4.GIT