mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
fix: [credential module] fix logging message
This commit is contained in:
parent
f45f9e5836
commit
ab01de76e5
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ class Credential(AbstractModule):
|
|||
nb_cred = len(all_credentials)
|
||||
message = f'Checked {nb_cred} credentials found.'
|
||||
|
||||
all_sites = self.regex_findall(self.regex_web, item.get_id(), item_content)
|
||||
all_sites = self.regex_findall(self.regex_web, item.get_id(), item_content, r_set=True)
|
||||
if all_sites:
|
||||
discovered_sites = ', '.join(all_sites)
|
||||
message += f' Related websites: {discovered_sites}'
|
||||
|
|
Loading…
Reference in a new issue