diff options
author | mathieui <mathieui@mathieui.net> | 2016-09-30 21:25:36 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-09-30 21:25:36 +0200 |
commit | 46a90749f839c3d64aa05458cef825f56e9c702d (patch) | |
tree | 207a8e9228f6b6b7efde2cef405bf712a505860e /docs/getting_started/sendlogout.rst | |
parent | 0c63a4bbdafcb557430e02f774dc88c5f2a974c1 (diff) | |
download | slixmpp-46a90749f839c3d64aa05458cef825f56e9c702d.tar.gz slixmpp-46a90749f839c3d64aa05458cef825f56e9c702d.tar.bz2 slixmpp-46a90749f839c3d64aa05458cef825f56e9c702d.tar.xz slixmpp-46a90749f839c3d64aa05458cef825f56e9c702d.zip |
Fix uses of super() in the codebase
Fix #3165, we don’t need to use the long form to get the superobject in
our supported python versions.
Diffstat (limited to 'docs/getting_started/sendlogout.rst')
-rw-r--r-- | docs/getting_started/sendlogout.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting_started/sendlogout.rst b/docs/getting_started/sendlogout.rst index d5882c42..a27976c5 100644 --- a/docs/getting_started/sendlogout.rst +++ b/docs/getting_started/sendlogout.rst @@ -24,7 +24,7 @@ for the JID that will receive our message, and the string content of the message class SendMsgBot(slixmpp.ClientXMPP): def __init__(self, jid, password, recipient, msg): - super(SendMsgBot, self).__init__(jid, password) + super().__init__(jid, password) self.recipient = recipient self.msg = msg |