From 0d6fd0b81e0c8e9d52f6f4be04b92f02111e1812 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 12 Aug 2024 10:14:08 +0300 Subject: [PATCH] wscript: fix regex syntax warning --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index c5aeb33d..be199f58 100644 --- a/wscript +++ b/wscript @@ -215,7 +215,7 @@ def configure(conf): conf.define('LINUX', True) conf.msg(msg='-> processing mod options', result='...', color='BLUE') - regex = re.compile('^([A-Za-z0-9_-]+)=([A-Za-z0-9_-]+)\ \#\ (.*)$') + regex = re.compile('^([A-Za-z0-9_-]+)=([A-Za-z0-9_-]+) # (.*)$') with open(str(conf.path.make_node('mod_options.txt'))) as fd: lines = fd.readlines() for line in lines: