Skip to content

Commit

Permalink
oops fix an issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wiedehopf committed Dec 4, 2020
1 parent 84eb4e6 commit a3ffc10
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mlat/client/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,10 @@ def __init__(self, listener, socket, s_family, s_type, addr):
self.addr = addr
self.writebuf = bytearray()

@staticmethod
def describe():
return 'Basic connection'

def log(self, fmt, *args, **kwargs):
log('{what} with {addr[0]}:{addr[1]}: ' + fmt, *args, what=self.describe(), addr=self.addr, **kwargs)

Expand Down

0 comments on commit a3ffc10

Please sign in to comment.