Skip to content

Commit 8efb719

Browse files
ShoshkinYour Name
authored andcommitted
Fix syntax error exception on python 2.7
1 parent d9fef0b commit 8efb719

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

voltron/plugins/debugger/dbg_lldb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ def register_hooks(self, quiet=False):
576576
log.debug("Saving hook index for unregistering.")
577577
self.hook_idx = int(output.split()[2][1:])
578578
except Exception as e:
579-
log.warning(f"Exception when saving hook index for unregistering. {e}")
579+
log.warning("Exception when saving hook index for unregistering. {}".format(e))
580580
pass
581581
self.registered = True
582582
if not quiet:

0 commit comments

Comments
 (0)