Lintfix the regexp string

This commit is contained in:
Bo Maryniuk 2015-09-09 15:27:56 +02:00
parent fc9c959678
commit a283d53737

View file

@ -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