1
0
mirror of https://github.com/qgis/QGIS.git synced 2025-04-16 00:03:12 -04:00
Tom Chadwin fab563fe71 Processing: avoid deprecated regex
Invalid escape sequence avoided via raw string:

`re.findall("\d+|[a-zA-Z]+", rep[0][0])` > `re.findall(r"\d+|[a-zA-Z]+", rep[0][0])`
2018-06-06 06:24:24 +10:00
..
2018-02-06 19:25:48 +02:00