diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-15 23:06:56 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-15 23:06:56 -0700 |
commit | 0469a72530c6c9bb080fd922db1295ff0643306c (patch) | |
tree | d4addfad74e0d7f8744851f664b25d9dd03c0da1 /continuedev/src | |
parent | 38cf45ed81d5828835583fd32193e2e442fbf799 (diff) | |
download | sncontinue-0469a72530c6c9bb080fd922db1295ff0643306c.tar.gz sncontinue-0469a72530c6c9bb080fd922db1295ff0643306c.tar.bz2 sncontinue-0469a72530c6c9bb080fd922db1295ff0643306c.zip |
more rigorous js impl
Diffstat (limited to 'continuedev/src')
-rw-r--r-- | continuedev/src/continuedev/steps/core/core.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/continuedev/src/continuedev/steps/core/core.py b/continuedev/src/continuedev/steps/core/core.py index bcff83f4..687d4eb0 100644 --- a/continuedev/src/continuedev/steps/core/core.py +++ b/continuedev/src/continuedev/steps/core/core.py @@ -343,7 +343,7 @@ def get_python_traceback(output: str) -> str: return None def get_javascript_traceback(output: str) -> str: - if "at " in output: - return output - else: - return None
\ No newline at end of file + lines = output.splitlines("\n") + first_line = lines[0].split(": ") + if len(lines) > 0 and len(first_line[0]) > 0 and "at" in lines[1].lstrip(): + return output
\ No newline at end of file |