diff --git a/decomp2dbg/__init__.py b/decomp2dbg/__init__.py index 0513c22..b074484 100644 --- a/decomp2dbg/__init__.py +++ b/decomp2dbg/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.8.2" +__version__ = "3.8.3" try: from .clients.client import DecompilerClient diff --git a/decomp2dbg/clients/gdb/decompiler_pane.py b/decomp2dbg/clients/gdb/decompiler_pane.py index 722c27a..466310b 100644 --- a/decomp2dbg/clients/gdb/decompiler_pane.py +++ b/decomp2dbg/clients/gdb/decompiler_pane.py @@ -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