Philipp Hörist pushed to branch master at gajim / python-nbxmpp
Commits:
aea0a654 by lovetox at 2020-10-22T21:40:15+02:00
AdHoc: Fix pylint error
- - - - -
1 changed file:
- nbxmpp/modules/adhoc.py
Changes:
=====================================
nbxmpp/modules/adhoc.py
=====================================
@@ -98,8 +98,8 @@ class AdHoc(BaseModule):
actions_ = command.getTag('actions')
if actions_ is not None:
- for action in actions_.getChildren():
- actions.append(AdHocAction(action.getName()))
+ for action_ in actions_.getChildren():
+ actions.append(AdHocAction(action_.getName()))
yield AdHocCommand(
jid=str(response.getFrom()),
View it on GitLab:
https://dev.gajim.org/gajim/python-nbxmpp/-/commit/aea0a654e0fcf4470be0a7df097947919174b61c
--
View it on GitLab:
https://dev.gajim.org/gajim/python-nbxmpp/-/commit/aea0a654e0fcf4470be0a7df097947919174b61c
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits