mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Lintfix the regexp string
This commit is contained in:
parent
fc9c959678
commit
a283d53737
1 changed files with 1 additions and 1 deletions
|
@ -437,7 +437,7 @@ def info(*packages):
|
|||
out = call['stdout']
|
||||
|
||||
ret = dict()
|
||||
for pkg_info in re.split("----*", out):
|
||||
for pkg_info in re.split(r"----*", out):
|
||||
pkg_info = pkg_info.strip()
|
||||
if not pkg_info:
|
||||
continue
|
||||
|
|
Loading…
Add table
Reference in a new issue