UnboundLocalError: local variable 'sessions_temp' referenced before assignment #2
Etiquetes
Sin etiquetas
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
Sense Milestone
Ningún proyecto
Sense assignats
1 participant
Notificacions
Data de venciment
Sin fecha de vencimiento.
Dependències
Aquesta incidència no té cap dependència.
Referència: spla/xmppbot.py#2
Loading…
Referencia en una nova incidència
Aún no existe contenido.
Eliminar la rama con el nombre '%!s()'
Eliminar una rama es permanente. NO PUEDE deshacerse. ¿Continuar?
The code throws this error after demanding "sessions" to the bot:
Traceback (most recent call last):
File "xmpp.py", line 104, in
sessions = ejabberd.user_sessions_info(mention.acct, bot.mastodon_hostname)
File "/home/mastodon/bots/xmppbot/ejabberdapi.py", line 213, in user_sessions_info
sessions = self.__json_allow_dict_attrs(sessions_temp)
UnboundLocalError: local variable 'sessions_temp' referenced before assignment
If there is not any active session, the response of the Ejabberd API is []:
(Pdb) response.json()
[]
so sessions_temp is not referenced.