Fix pylint/pep8 errors
This commit is contained in:
parent
646ace533f
commit
69248b2fe7
|
@ -433,10 +433,10 @@ class CommonConnection:
|
|||
return
|
||||
|
||||
app.logger.insert_into_logs(jid, obj.timestamp, obj.kind,
|
||||
message=obj.message,
|
||||
subject=obj.subject,
|
||||
additional_data=obj.additional_data,
|
||||
stanza_id=obj.stanza_id)
|
||||
message=obj.message,
|
||||
subject=obj.subject,
|
||||
additional_data=obj.additional_data,
|
||||
stanza_id=obj.stanza_id)
|
||||
|
||||
def ack_subscribed(self, jid):
|
||||
"""
|
||||
|
|
|
@ -1059,10 +1059,10 @@ class ConnectionHandlersBase:
|
|||
show = app.logger.convert_show_values_to_db_api_values(obj.show)
|
||||
if show is not None:
|
||||
app.logger.insert_into_logs(nbxmpp.JID(obj.jid).getStripped(),
|
||||
time_time(),
|
||||
KindConstant.STATUS,
|
||||
message=obj.status,
|
||||
show=show)
|
||||
time_time(),
|
||||
KindConstant.STATUS,
|
||||
message=obj.status,
|
||||
show=show)
|
||||
|
||||
def _nec_gc_presence_received(self, obj):
|
||||
if obj.conn.name != self.name:
|
||||
|
@ -1185,11 +1185,11 @@ class ConnectionHandlersBase:
|
|||
# usually it hold description and can be send at each connection
|
||||
# so don't store it in logs
|
||||
app.logger.insert_into_logs(obj.jid,
|
||||
obj.timestamp,
|
||||
KindConstant.GC_MSG,
|
||||
message=obj.msgtxt,
|
||||
contact_name=obj.nick,
|
||||
additional_data=obj.additional_data)
|
||||
obj.timestamp,
|
||||
KindConstant.GC_MSG,
|
||||
message=obj.msgtxt,
|
||||
contact_name=obj.nick,
|
||||
additional_data=obj.additional_data)
|
||||
# store in memory time of last message logged.
|
||||
# this will also be saved in rooms_last_message_time table
|
||||
# when we quit this muc
|
||||
|
@ -1207,10 +1207,10 @@ class ConnectionHandlersBase:
|
|||
|
||||
if session.is_loggable():
|
||||
app.logger.insert_into_logs(nbxmpp.JID(frm).getStripped(),
|
||||
tim,
|
||||
KindConstant.ERROR,
|
||||
message=error_msg,
|
||||
subject=subject)
|
||||
tim,
|
||||
KindConstant.ERROR,
|
||||
message=error_msg,
|
||||
subject=subject)
|
||||
|
||||
app.nec.push_incoming_event(MessageErrorEvent(None, conn=self,
|
||||
fjid=frm, error_code=msg.getErrorCode(), error_msg=error_msg,
|
||||
|
|
|
@ -869,11 +869,11 @@ class GcPresenceReceivedEvent(nec.NetworkIncomingEvent, HelperEvent):
|
|||
if show is not None:
|
||||
fjid = nbxmpp.JID(self.fjid)
|
||||
app.logger.insert_into_logs(fjid.getStripped(),
|
||||
time_time(),
|
||||
KindConstant.GCSTATUS,
|
||||
contact_name=fjid.getResource(),
|
||||
message=st,
|
||||
show=show)
|
||||
time_time(),
|
||||
KindConstant.GCSTATUS,
|
||||
contact_name=fjid.getResource(),
|
||||
message=st,
|
||||
show=show)
|
||||
if self.avatar_sha == '':
|
||||
# contact has no avatar
|
||||
puny_nick = helpers.sanitize_filename(self.nick)
|
||||
|
|
Loading…
Reference in New Issue