diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-02-25 15:13:43 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-02-25 15:13:43 +0100 |
commit | 0618b38d34827e0e9ba2a0dbff7964761b2b7662 (patch) | |
tree | d1f5ea4de75af03f4de6eb4ebd041781e4252dc9 | |
parent | f901ae9feaa604dd3b151d51fe0b831d276262dd (diff) | |
download | mpd-box-0618b38d34827e0e9ba2a0dbff7964761b2b7662.tar.gz mpd-box-0618b38d34827e0e9ba2a0dbff7964761b2b7662.tar.xz |
daemon: fix typo in logger call
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | daemon.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ class Daemon: # arduino sometimes has a dirty buffer # and sends junk before the ready message if not incoming.endswith("ready"): - log.error("Got reply: '"+incoming+"'") + logger.error("Got reply: '"+incoming+"'") raise Exception("Wrong or no client greeting") self.ser.timeout = 1 logger.debug("got client greeting") |