From 911f2d3b5194437735289ee3714e1e4e2c3079bf Mon Sep 17 00:00:00 2001 From: uenz Date: Mon, 28 Dec 2020 21:15:27 +0100 Subject: [PATCH] Fixed call of on_file_new --- tclCommands/TclCommandNew.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tclCommands/TclCommandNew.py b/tclCommands/TclCommandNew.py index 9a2af1f2..c5f76575 100644 --- a/tclCommands/TclCommandNew.py +++ b/tclCommands/TclCommandNew.py @@ -39,4 +39,4 @@ class TclCommandNew(TclCommand): :return: None or exception """ - self.app.on_file_new(cli=True) + self.app.f_handlers.on_file_new(cli=True)