From ebc178fd9938e888f46c853454243c38eafcb1f5 Mon Sep 17 00:00:00 2001 From: Marko Petric <marko.petric@cern.ch> Date: Thu, 1 Dec 2016 14:55:15 +0100 Subject: [PATCH] Fix error message --- DDG4/python/DDG4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DDG4/python/DDG4.py b/DDG4/python/DDG4.py index 4cc2698d0..4f4cf4f8d 100644 --- a/DDG4/python/DDG4.py +++ b/DDG4/python/DDG4.py @@ -29,7 +29,7 @@ def loadDDG4(): result = gSystem.Load("libDDG4Plugins") if 0 != result: - raise Exception('DDG4.py: Failed to load the Geant4 library libDDG4: '+gSystem.GetErrorStr()) + raise Exception('DDG4.py: Failed to load the DDG4 library libDDG4Plugins: '+gSystem.GetErrorStr()) from ROOT import DD4hep as module return module -- GitLab