Skip to content

Commit dfcca34

Browse files
committed
Avoid new unpacking for Python 3.4 support
1 parent e55a619 commit dfcca34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yeelib/discover.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def __init__(self, bulbs, bulb_class=Bulb):
6363

6464
def datagram_received(self, data, addr):
6565
msg = data.decode()
66-
logger.debug("%s:%s> %s", *addr, msg)
66+
logger.debug("%s:%s> %s", addr + (msg,))
6767

6868
lines = msg.splitlines()
6969
type, addr, status = lines[0].split()

0 commit comments

Comments
 (0)