From 90726f70cacb7ca32d19aa847557b911f4dd9cf5 Mon Sep 17 00:00:00 2001 From: Zach Riggle Date: Mon, 20 Apr 2015 20:55:44 -0700 Subject: [PATCH] Python3 --- pwndbg/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwndbg/__init__.py b/pwndbg/__init__.py index f3a6c13cd..7b9cbd0be 100644 --- a/pwndbg/__init__.py +++ b/pwndbg/__init__.py @@ -99,4 +99,4 @@ def prompt_hook(*a): gdb.prompt_hook = prompt_hook msg = "Loaded %i commands. Type pwndbg for a list." % len(pwndbg.commands.Command.commands) -print pwndbg.color.red(msg) \ No newline at end of file +print(pwndbg.color.red(msg)) \ No newline at end of file