From 4ae2cb71d35e75cca28c62d515c59f8d5d98b161 Mon Sep 17 00:00:00 2001
From: Christian Weber <ChristianTMWeber@gmal.com>
Date: Mon, 4 Jul 2022 16:17:48 -0400
Subject: [PATCH] Small bugfix for python 3

---
 functions/compareVersions.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/functions/compareVersions.py b/functions/compareVersions.py
index 9f1772d..4c23031 100644
--- a/functions/compareVersions.py
+++ b/functions/compareVersions.py
@@ -35,7 +35,7 @@ if __name__ == '__main__':
     # check root version
     currentROOTVersion = ROOT.gROOT.GetVersion()
 
-    Print("current version is  " + currentROOTVersion)
+    print("current version is  " + currentROOTVersion)
 
     assert compareVersions( '6.14/04', '6.14/04' ) == 0 
     assert compareVersions( '6.15/04', '6.14/04' ) == 1
-- 
GitLab