scripts: coredump: rename parser to avoid conflict with builtin module

The parser module name collides with builtin parser module in python.
This seems to break the import in windows.

Signed-off-by: Elliot Revell-Nash <elliot.revell-nash@wdtl.com>
This commit is contained in:
Elliot Revell-Nash 2021-07-19 09:14:12 +12:00 committed by Anas Nashif
commit c2897c6b18
4 changed files with 2 additions and 2 deletions

View file

@ -10,8 +10,8 @@ import os
import socket
import sys
from parser.log_parser import CoredumpLogFile
from parser.elf_parser import CoredumpElfFile
from coredump_parser.log_parser import CoredumpLogFile
from coredump_parser.elf_parser import CoredumpElfFile
import gdbstubs