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 /arper.py | |
| parent | 26aeb26a54ef46a06a84d6c62492ebca318c5263 (diff) | |
Fix missing f's.
Diffstat (limited to 'arper.py')
| -rw-r--r-- | arper.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -60,7 +60,7 @@ class Arper(persistent.Persistent): self.update_from_arp_scan() self.update_from_arp() if len(self.state) < config.config['arper_min_entries_to_be_valid']: - raise Exception('Arper didn\'t find enough entries; only got {len(self.state)}.') + raise Exception(f'Arper didn\'t find enough entries; only got {len(self.state)}.') def update_from_arp_scan(self): network_spec = site_config.get_config().network |
