Fix regex for Python 3.7
This commit is contained in:
parent
1291fc4187
commit
7461e76606
|
|
@ -891,7 +891,7 @@ class ViewTestCases:
|
|||
Rename multiple instances.
|
||||
"""
|
||||
rename_data = {
|
||||
'find': '(.*)',
|
||||
'find': '^(.*)$',
|
||||
'replace': '\\1X', # Append an X to the original value
|
||||
'use_regex': True,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue