1 parent a70da5a commit e6fe615Copy full SHA for e6fe615
2 files changed
README.md
@@ -36,6 +36,7 @@ Please check the official [HBS user manual](https://github.com/m-kru/hbs/blob/ma
36
37
### Changed
38
- Improved error messages.
39
+- Improved regex for errors and warnings.
40
41
### Fixed
42
- Generics handling for xsim.
hbs
@@ -18,8 +18,8 @@ import multiprocessing
18
this_script_dir = os.path.dirname(os.path.abspath(__file__))
19
workers = multiprocessing.cpu_count()
20
21
-error_regexp = re.compile(r"\berror\b")
22
-warning_regexp = re.compile(r"\bwarning\b")
+error_regexp = re.compile(r"(?<!\=)\berror\b")
+warning_regexp = re.compile(r"(?<!\=)\bwarning\b")
23
24
help_help = """Usage:
25
0 commit comments