From d3bb5c7bd1c579f4e6cdb6d79a6d5ac316ccfac1 Mon Sep 17 00:00:00 2001 From: NeilBrown Date: Sat, 26 Dec 2015 09:43:47 +1100 Subject: [PATCH] Fix text.py for new calling convention. Pane commands must be called against a pane... Signed-off-by: NeilBrown --- python/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/test.py b/python/test.py index df039a8e..dd7915ad 100644 --- a/python/test.py +++ b/python/test.py @@ -1,4 +1,4 @@ -edlib.call("Replace", "This text was inserted from python\n", pane, pane); +pane.call("Replace", "This text was inserted from python\n", pane); -- 2.39.5