From c72b755b4cd9a6ff47a0e7922beb965b420fd3a2 Mon Sep 17 00:00:00 2001 From: Zach Riggle Date: Thu, 23 Apr 2015 02:11:25 -0700 Subject: [PATCH] Colored instructions were misleading --- pwndbg/disasm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwndbg/disasm.py b/pwndbg/disasm.py index 0b131dc4a..6a370fa0a 100644 --- a/pwndbg/disasm.py +++ b/pwndbg/disasm.py @@ -135,6 +135,6 @@ def color(ins): asm = ins.asm mnem = asm.split()[0].strip().rstrip('+-') if mnem in branches: - asm = pwndbg.color.yellow(asm) + asm = pwndbg.color.bold(asm) asm += '\n' return asm