diff options
| author | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-15 13:04:52 +0800 |
|---|---|---|
| committer | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-15 13:04:52 +0800 |
| commit | 28113e00a1dc26b29b2c09a2d70c03e22d99bcc6 (patch) | |
| tree | d291ee2c3ae4958e04487d78dabdab6bdec403d5 | |
| parent | 1f755d9d31b145fe93e793e8cf7a269e4cdb71e5 (diff) | |
| download | ibus-28113e00a1dc26b29b2c09a2d70c03e22d99bcc6.tar.gz ibus-28113e00a1dc26b29b2c09a2d70c03e22d99bcc6.tar.xz ibus-28113e00a1dc26b29b2c09a2d70c03e22d99bcc6.zip | |
Fix typo.
| -rw-r--r-- | ibus/connection.py | 2 | ||||
| -rw-r--r-- | ibus/property.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ibus/connection.py b/ibus/connection.py index 8bd3e9a..cf5ea36 100644 --- a/ibus/connection.py +++ b/ibus/connection.py @@ -27,7 +27,7 @@ import ibus class Connection(dbus.connection.Connection): def __new__(cls): - return super(Connection, cls).__new__(ibus.IBUS_ADDR) + return super(Connection, cls).__new__(cls, ibus.IBUS_ADDR) def get_ibus(self): return self.get_object(ibus.IBUS_NAME, ibus.IBUS_PATH) diff --git a/ibus/property.py b/ibus/property.py index 4244c6b..477a093 100644 --- a/ibus/property.py +++ b/ibus/property.py @@ -156,7 +156,7 @@ def property_from_dbus_value(value): class PropList(object): def __init__(self): - super(PropLis, self).__init__() + super(PropList, self).__init__() self._props = [] def append(self, prop): |
