VSC returns errors with an <a href='file../> reference in Python

Viewed 130

Pretty much the title, for some reason VSC started to reference my errors when executing Python scripts with <a href='file../> which makes it really difficult to figure out what is going on and where the error is.

Have anyone experienced this and if so, how would I fix it?

Example:

<a href='file://c:\Users\SomeUser\SomePath\test.py?line=17'>18</a> print(1/0)
ZeroDivisionError: division by zero

Picture: enter image description here

It appeared when running the simple script of

print(1/0)

Additional note is that if I import a module and an error is raised there, then I the error comes out in a standard format and not with the <a href

1 Answers

This went away with the latest update, as such I would think it does not exist anymore as a problem.

Related