pylint W0143 is not available on pylint < 2.0
This commit is contained in:
parent
4eb226bb37
commit
16f7620204
|
@ -1031,7 +1031,7 @@ class Connection(CommonConnection, ConnectionHandlers):
|
||||||
nbxmpp.dispatcher_nb.DEFAULT_TIMEOUT_SECONDS = \
|
nbxmpp.dispatcher_nb.DEFAULT_TIMEOUT_SECONDS = \
|
||||||
self.try_connecting_for_foo_secs
|
self.try_connecting_for_foo_secs
|
||||||
# FIXME: this is a hack; need a better way
|
# FIXME: this is a hack; need a better way
|
||||||
if self.on_connect_success == self._on_new_account: # pylint: disable=W0143
|
if self.on_connect_success == self._on_new_account:
|
||||||
con.RegisterDisconnectHandler(self._on_new_account)
|
con.RegisterDisconnectHandler(self._on_new_account)
|
||||||
|
|
||||||
if self.client_cert and app.config.get_per('accounts', self.name,
|
if self.client_cert and app.config.get_per('accounts', self.name,
|
||||||
|
|
|
@ -41,7 +41,6 @@ def build_resources_submenu(contacts, account, action, room_jid=None,
|
||||||
item = Gtk.MenuItem.new_with_label(
|
item = Gtk.MenuItem.new_with_label(
|
||||||
'%s (%s)' % (c.resource, str(c.priority)))
|
'%s (%s)' % (c.resource, str(c.priority)))
|
||||||
sub_menu.append(item)
|
sub_menu.append(item)
|
||||||
# pylint: disable=W0143
|
|
||||||
if action == roster.on_invite_to_room:
|
if action == roster.on_invite_to_room:
|
||||||
item.connect('activate', action, [(c, account)], room_jid,
|
item.connect('activate', action, [(c, account)], room_jid,
|
||||||
room_account, c.resource)
|
room_account, c.resource)
|
||||||
|
|
Loading…
Reference in New Issue