From 4c2620df4c9b783c8679c19c8a60fce53847e7b3 Mon Sep 17 00:00:00 2001 From: Adrian Maraj Date: Tue, 16 Apr 2024 15:35:16 +0200 Subject: [PATCH] fixing so that modules can be none --- lookyloo/lookyloo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lookyloo/lookyloo.py b/lookyloo/lookyloo.py index b64c233..2fe06d0 100644 --- a/lookyloo/lookyloo.py +++ b/lookyloo/lookyloo.py @@ -918,7 +918,7 @@ class Lookyloo(): body = get_email_template() body = body.format( recipient=msg['To'].addresses[0].display_name, - modules=modules, + modules=modules if modules else '', domain=self.public_domain, uuid=capture_uuid, initial_url=initial_url,