chg: Fix typo in archiver

pull/251/head
Raphaël Vinot 2021-08-23 16:56:17 +02:00
parent fb1685cedc
commit ece30a33eb
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class Archiver(AbstractManager):
# NOTE: Initialize recent
recent_uuids = {}
for uuid_path in sorted(self.lookyloo.capture_dir.glob('*/uuid'), reverse=True):
for uuid_path in sorted(lookyloo.capture_dir.glob('*/uuid'), reverse=True):
with uuid_path.open() as f:
uuid = f.read()
recent_uuids[uuid] = str(uuid_path.parent)