We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e907ca commit 7956bccCopy full SHA for 7956bcc
easybuild/framework/easyconfig/format/one.py
@@ -350,8 +350,8 @@ def extract_comments(self, rawtxt):
350
351
parsed_ec = self.get_config_dict()
352
353
- param_def_regex = re.compile('^([a-z__0-9]+)\s*=')
354
- whitespace_regex = re.compile('^\s*$')
+ param_def_regex = re.compile(r'^([a-z__0-9]+)\s*=')
+ whitespace_regex = re.compile(r'^\s*$')
355
356
def clean_part(part):
357
"""Helper function to strip off trailing whitespace + trailing quotes."""
0 commit comments