Skip to content
Snippets Groups Projects
Commit afa6c89c authored by Marco Cattaneo's avatar Marco Cattaneo
Browse files

Merge branch 'fixGaudiPythonDeprecation-run2' into 'run2-patches'

Fix GaudiPython deprecation warnings triggered by LCG_106

See merge request !4912
parents 840d9a53 4acd0e3f
No related branches found
No related tags found
1 merge request!4912Fix GaudiPython deprecation warnings triggered by LCG_106
Pipeline #10284546 passed
......@@ -1606,7 +1606,7 @@ iAlgorithm.Histos = _Histos_a_
iAlgTool.Histos = _Histos_t_
# finally add some decoration for histograms
import GaudiPython.HistoUtils
import GaudiAlg.HistoUtils
# =============================================================================
# pseudo help
......
......@@ -96,7 +96,7 @@ if "__main__" == __name__:
configure(gaudi)
gaudi.run(20)
import GaudiPython.HistoUtils # noqa: F401 (adds dump method)
import GaudiAlg.HistoUtils # noqa: F401 (adds dump method)
alg = gaudi.algorithm("HistoEx")
histos = alg.Histos()
......
......@@ -102,7 +102,7 @@ if "__main__" == __name__:
configure(gaudi)
gaudi.run(20)
import GaudiPython.HistoUtils # noqa: F401 (adds dump method)
import GaudiAlg.HistoUtils # noqa: F401 (adds dump method)
alg = gaudi.algorithm("HistoEx1")
histos = alg.Histos()
......
......@@ -89,7 +89,7 @@ def configure(gaudi=None):
if "__main__" == __name__:
print(__doc__ + __author__)
import GaudiPython.HistoUtils # noqa: F401 (adds dump method)
import GaudiAlg.HistoUtils # noqa: F401 (adds dump method)
from GaudiPython.Bindings import AppMgr
gaudi = AppMgr()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment