Commit 5897d3be authored by Ignacio Corderi's avatar Ignacio Corderi
Browse files

Merge pull request #20 from rpcope1/master

Fixed a typo in baseclient.BaseClient.send()
parents 23b8486d 01273152
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -355,7 +355,7 @@ class BaseClient(object):
            m,cmd,value = self.network_recv()
            if m.authType == messages.Message.UNSOLICITEDSTATUS:
                if self.on_unsolicited:
                    self.on_unsolicited(resp.status) # uncatched exceptions by the handler will be raised to the caller
                    self.on_unsolicited(cmd.status) # uncatched exceptions by the handler will be raised to the caller
                else:
                    LOG.warn('Unsolicited status %s received but nobody listening.' % cmd.status.code)
            else: done = True