summaryrefslogtreecommitdiff
path: root/lorrycontroller/readconf.py
diff options
context:
space:
mode:
Diffstat (limited to 'lorrycontroller/readconf.py')
-rw-r--r--lorrycontroller/readconf.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/lorrycontroller/readconf.py b/lorrycontroller/readconf.py
index 512b558..b488765 100644
--- a/lorrycontroller/readconf.py
+++ b/lorrycontroller/readconf.py
@@ -209,11 +209,6 @@ class ReadConfiguration(lorrycontroller.LorryControllerRoute):
timeout = section.get(
'lorry-timeout', self.DEFAULT_LORRY_TIMEOUT)
- try:
- old_lorry_info = statedb.get_lorry_info(path)
- except lorrycontroller.LorryNotFoundError:
- old_lorry_info = None
-
statedb.add_to_lorries(
path=path, text=text, from_host='', from_path='',
interval=interval, timeout=timeout)
@@ -244,7 +239,7 @@ class ReadConfiguration(lorrycontroller.LorryControllerRoute):
except yaml.YAMLError:
f.seek(0)
obj = json.load(f)
- except ValueError as e:
+ except ValueError:
logging.error('YAML and JSON problem in %s', filename)
return []