Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

Commit

Permalink
Fix path to relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ElykDeer committed Sep 23, 2020
1 parent af568a2 commit 43e4f67
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DWARF Import (v1.0.0)
# DWARF Import (v1.0.1)
Author: **Vector 35 Inc**

_Imports DWARF Info from ELFs_
Expand Down
2 changes: 1 addition & 1 deletion io/dwarf_expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

from elftools.dwarf.dwarf_expr import struct_parse, bytelist2string, DW_OP_name2opcode, DW_OP_opcode2name
from elftools.dwarf.descriptions import describe_reg_name, _REG_NAMES_x64
from dwarf_import.model.elements import ExprOp, LocationType
from ..model.elements import ExprOp, LocationType
from typing import List, Optional
from enum import Enum
from io import BytesIO
Expand Down
4 changes: 2 additions & 2 deletions io/dwarf_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
from elftools.dwarf.dwarf_expr import GenericExprVisitor
from elftools.dwarf.die import AttributeValue, DIE
from elftools.dwarf.locationlists import LocationEntry, BaseAddressEntry
from dwarf_import.model import Module
from dwarf_import.model.elements import (
from ..model import Module
from ..model.elements import (
Component, ComponentOrigin, Element,
ImportedModule, ImportedFunction,
Function, LocalVariable, LocationType, Location, Parameter,
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"pyelftools"
]
},
"version": "1.0.0",
"version": "1.0.1",
"author": "Vector 35 Inc",
"minimumbinaryninjaversion": 1904
}

0 comments on commit 43e4f67

Please sign in to comment.