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

Commit

Permalink
Major Improvements : Version v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ElykDeer committed Aug 31, 2022
1 parent 2bc6f5e commit 82b286e
Show file tree
Hide file tree
Showing 16 changed files with 842 additions and 704 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.1.3)
# DWARF Import (v1.2.0)
Author: **Vector 35 Inc**

_Imports DWARF Info from ELFs_
Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def load_symbols_from_file(bv):
file_choice = OpenFileNameField("Debug file")
get_form_input([file_choice], "Open debug file")

if not file_choice.result or os.path.exists(file_choice.result):
if not file_choice.result or not os.path.exists(file_choice.result):
log_error(f"Input file `{file_choice.result}` does not exist")
return

Expand Down
Loading

0 comments on commit 82b286e

Please sign in to comment.