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:
parent
5b5396f7b6
commit
c2897c6b18
4 changed files with 2 additions and 2 deletions
|
@ -10,8 +10,8 @@ import os
|
||||||
import socket
|
import socket
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from parser.log_parser import CoredumpLogFile
|
from coredump_parser.log_parser import CoredumpLogFile
|
||||||
from parser.elf_parser import CoredumpElfFile
|
from coredump_parser.elf_parser import CoredumpElfFile
|
||||||
|
|
||||||
import gdbstubs
|
import gdbstubs
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue