diff --git a/CHANGES b/CHANGES index 9c83efb..d7d2393 100644 --- a/CHANGES +++ b/CHANGES @@ -3,7 +3,16 @@ pyxs Changelog Here you can see the full list of changes between each pyxs release. +Version 0.4 +----------- + +- Added `default` argument to `Client.read()`, which acts similar to + `dict.get()`. + Version 0.3 +----------- + +Released on September 12ve 2011 - Moved all PUBSUB functionality into a separate `Monitor` class, which uses a *separate* connection. That way, we'll never have to worry diff --git a/pyxs/client.py b/pyxs/client.py index 245656a..dd5e945 100644 --- a/pyxs/client.py +++ b/pyxs/client.py @@ -138,7 +138,7 @@ def execute_command(self, op, *args, **kwargs): elif packet.op is not op: raise UnexpectedPacket(packet) # Making sure sent and recieved packets are within the - # same transaction -- not relevant for # `XenBusConnection`, + # same transaction -- not relevant for `XenBusConnection`, # for some reason it sometimes returns *random* values # of tx_id and rq_id. elif (not isinstance(self.connection, XenBusConnection) and