From a4c8322e8e5395e2557051f9f1d3aa37147bc857 Mon Sep 17 00:00:00 2001 From: Jan Holthuis Date: Mon, 19 Nov 2018 11:14:49 +0100 Subject: [PATCH] repeater.py: Fix print function's missing brackets --- pappyproxy/interface/repeater/repeater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pappyproxy/interface/repeater/repeater.py b/pappyproxy/interface/repeater/repeater.py index 9daab53..535b576 100644 --- a/pappyproxy/interface/repeater/repeater.py +++ b/pappyproxy/interface/repeater/repeater.py @@ -1558,7 +1558,7 @@ def set_up_windows(): b1 = vim.current.buffer vim.command("let s:b1=bufnr('$')") - print msg_addr + print(msg_addr) comm_type, comm_addr = msg_addr.split(":", 1) set_conn(comm_type, comm_addr) with ProxyConnection(kind=comm_type, addr=comm_addr) as conn: