mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
traceback filter condition was too narrow (PY-301)
This commit is contained in:
@@ -17,7 +17,7 @@ import java.util.regex.Pattern;
|
||||
public class PythonTracebackFilter implements Filter {
|
||||
private final Project myProject;
|
||||
private final String myWorkingDirectory;
|
||||
private final Pattern myMatchingPattern = Pattern.compile("File \"([^\"]+)\", line (\\d+), in");
|
||||
private final Pattern myMatchingPattern = Pattern.compile("File \"([^\"]+)\", line (\\d+)");
|
||||
|
||||
public PythonTracebackFilter(Project myProject, String workingDirectory) {
|
||||
this.myProject = myProject;
|
||||
|
||||
Reference in New Issue
Block a user