Skip to content

Commit

Permalink
Fix bug introduced in 3.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mahaloz committed Jan 13, 2024
1 parent 6d8ffe6 commit 08f3b11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion decomp2dbg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.8.2"
__version__ = "3.8.3"

try:
from .clients.client import DecompilerClient
Expand Down
3 changes: 1 addition & 2 deletions decomp2dbg/clients/gdb/decompiler_pane.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ def update_event(self, pc_):
except OverflowError as e:
warn(
f"Decompiler failed to get a response from decompiler on "
f"{hex(rebased_pc) if isinstance(
rebased_pc, int) else rebased_pc} with: {e}"
f"{hex(rebased_pc) if isinstance(rebased_pc, int) else rebased_pc} with: {e}"
f", are you in a library function?"
)
return False
Expand Down

0 comments on commit 08f3b11

Please sign in to comment.