9 lines
131 B
Python
9 lines
131 B
Python
import re
|
|
|
|
|
|
def check_regex(output_version):
|
|
if re.search('--no-regex', output_version):
|
|
return False
|
|
|
|
return True
|