From 29ee8c890aef78f5ad030ac49c2dacfc20236405 Mon Sep 17 00:00:00 2001 From: "Remi GASCOU (Podalirius)" <79218792+p0dalirius@users.noreply.github.com> Date: Mon, 24 Jun 2024 21:09:31 +0200 Subject: [PATCH] Fixed 'tuple' object has no attribute 'no_colors' --- smbclientng/core/SessionsManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smbclientng/core/SessionsManager.py b/smbclientng/core/SessionsManager.py index 1840262..cb79bb1 100644 --- a/smbclientng/core/SessionsManager.py +++ b/smbclientng/core/SessionsManager.py @@ -23,7 +23,7 @@ def __init__(self, config, logger): self.current_session = None self.current_session_id = None - self.config = config, + self.config = config self.logger = logger def create_new_session(self, credentials, host, port=445):