Hello, i have Rundeck installed and running on a Windows Server 2019 VM, when i execute some PowerShell scripts with target Windows nodes, i get the following errors:
C:\rundeck\libext\cache\py-winrm-plugin-2.1.3\common.py:35: SyntaxWarning: invalid escape sequence '\s'
regexpMultipleAbsolutePath = re.compile('\'[a-zA-Z]:\\\\.*\s[a-zA-Z]:\\\\.*') #at least two absolute paths
C:\rundeck\libext\cache\py-winrm-plugin-2.1.3\common.py:39: SyntaxWarning: invalid escape sequence '\s'
regexpPathAndOption = re.compile('\'[a-zA-Z]:\\\\.*\s/.+')
C:\rundeck\libext\cache\py-winrm-plugin-2.1.3\common.py:43: SyntaxWarning: invalid escape sequence '\s'
regexpPathAndOptionUnix = re.compile('\'[a-zA-Z]:\\\\.*\s-.+')
C:\rundeck\libext\cache\py-winrm-plugin-2.1.3\common.py:47: SyntaxWarning: invalid escape sequence '\s'
regexPathRequireQuotes = re.compile('\'[a-zA-Z]:\\\\.*\s')
However the job complete OK and the script does what i need, how can i remove these errors appearing on the output?
Thanks in advice.