From 78e698afc1c19601924bc2aeecc8bd8495821e45 Mon Sep 17 00:00:00 2001 From: Danilo Piparo <danilo.piparo@cern.ch> Date: Tue, 18 Oct 2016 17:15:20 +0200 Subject: [PATCH] Fix ROOT-8353 --- main/python/cmdLineUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/python/cmdLineUtils.py b/main/python/cmdLineUtils.py index f2555037e8f..6848d828db7 100644 --- a/main/python/cmdLineUtils.py +++ b/main/python/cmdLineUtils.py @@ -708,7 +708,7 @@ REPLACE_HELP = "replace object if already existing" def _openBrowser(rootFile=None): browser = ROOT.TBrowser() if rootFile: rootFile.Browse(browser) - ROOT.PyROOT.TPyROOTApplication.Run(ROOT.gApplication) + raw_input("Press enter to exit.") def rootBrowse(fileName=None): if fileName: -- GitLab