From b122a39b155e9a383c469e0c516d46ba7d320876 Mon Sep 17 00:00:00 2001 From: termanix <50464194+termanix@users.noreply.github.com> Date: Mon, 25 Mar 2024 17:15:06 +0300 Subject: [PATCH] Update get-desc-users.py Removed space Signed-off-by: termanix <50464194+termanix@users.noreply.github.com> --- nxc/modules/get-desc-users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nxc/modules/get-desc-users.py b/nxc/modules/get-desc-users.py index b9a58e1e..31c76816 100644 --- a/nxc/modules/get-desc-users.py +++ b/nxc/modules/get-desc-users.py @@ -103,7 +103,7 @@ class NXCModule: conditionPasswordPolicy = True if conditionFilter and not self.PASSWORDPOLICY: - context.log.highlight(f"'{self.FILTER}' found in description: '{description}'") + context.log.highlight(f"'{self.FILTER}' found in description: '{description}'") elif (self.FILTER == "" and (conditionPasswordPolicy == self.PASSWORDPOLICY)): answersFiltered.append([answer[0], description]) elif (self.FILTER != "" and conditionFilter) and (conditionPasswordPolicy == self.PASSWORDPOLICY):