diff --git a/mx.fastr/mx_fastr_pkgs.py b/mx.fastr/mx_fastr_pkgs.py index 9f27c6205616daeb2f0899a62c8148d37b98fd95..fefdcb8971933b1ff80316780ccf6b1c731da56b 100644 --- a/mx.fastr/mx_fastr_pkgs.py +++ b/mx.fastr/mx_fastr_pkgs.py @@ -763,7 +763,8 @@ def _capture_prompt(lines, idx): def _is_statement_begin(captured_prompt, line): - return line.startswith(captured_prompt) and line.replace(captured_prompt, "").strip() is not "" + line_wo_prompt = line.replace(captured_prompt, "").strip() + return line.startswith(captured_prompt) and line_wo_prompt is not "" and not line_wo_prompt.startswith("#") def pkgtest_cmp(args):