mirror of
https://github.com/lgandx/Responder.git
synced 2025-12-26 17:39:04 +00:00
fixed 'SyntaxWarning: invalid escape sequence' for Python 3.12+
This commit is contained in:
4
settings.py
Executable file → Normal file
4
settings.py
Executable file → Normal file
@@ -243,10 +243,10 @@ class Settings:
|
||||
|
||||
if self.Serve_Exe == True:
|
||||
if not os.path.exists(self.Html_Filename):
|
||||
print(utils.color("/!\ Warning: %s: file not found" % self.Html_Filename, 3, 1))
|
||||
print(utils.color("/!\\ Warning: %s: file not found" % self.Html_Filename, 3, 1))
|
||||
|
||||
if not os.path.exists(self.Exe_Filename):
|
||||
print(utils.color("/!\ Warning: %s: file not found" % self.Exe_Filename, 3, 1))
|
||||
print(utils.color("/!\\ Warning: %s: file not found" % self.Exe_Filename, 3, 1))
|
||||
|
||||
# SSL Options
|
||||
self.SSLKey = config.get('HTTPS Server', 'SSLKey')
|
||||
|
||||
Reference in New Issue
Block a user