diff options
| author | Scott <[email protected]> | 2022-01-26 21:18:33 -0800 |
|---|---|---|
| committer | Scott <[email protected]> | 2022-01-26 21:18:33 -0800 |
| commit | bb3ebebb1a2458fa52b042b35d8e5fbad408ff80 (patch) | |
| tree | 1518ae0510b001e5d5acaf6766aa222931a270e9 /base_presence.py | |
| parent | 26aeb26a54ef46a06a84d6c62492ebca318c5263 (diff) | |
Fix missing f's.
Diffstat (limited to 'base_presence.py')
| -rwxr-xr-x | base_presence.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base_presence.py b/base_presence.py index 405b743..94c5e2f 100755 --- a/base_presence.py +++ b/base_presence.py @@ -161,7 +161,7 @@ class PresenceDetection(object): if "cabin_" in line: continue if location == Location.CABIN: - logger.debug('Cabin count: {cabin_count}') + logger.debug(f'Cabin count: {cabin_count}') cabin_count += 1 try: (mac, count, ip_name, mfg, ts) = line.split(",") |
