Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions snom_messaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ def send_dgram(self, dgram, addr=None):
out_addr = self._lastConnection
else:
out_addr = addr
logger.debug("Outgoing Datagram to {}".format(addr))
logger.debug("Outgoing Datagram to {}".format(out_addr))
_prettyprint_mlstring(dgram, logger.debug)
self._transport.sendto(dgram.encode("UTF-8"), addr)
self._transport.sendto(dgram.encode("UTF-8"), out_addr)


def main():
Expand Down