From ace8de9224efb21c6f2fe1ff052e79988ceea6a8 Mon Sep 17 00:00:00 2001
From: Edward Moyse <edward.moyse@cern.ch>
Date: Mon, 2 Dec 2019 15:17:09 +0100
Subject: [PATCH] Minor python3 fixes for MuonGMJobProperties.py

---
 .../python/MuonGMJobProperties.py              | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/DetectorDescription/GeoModel/AtlasGeoModel/python/MuonGMJobProperties.py b/DetectorDescription/GeoModel/AtlasGeoModel/python/MuonGMJobProperties.py
index 27140344eb1..cebffc254b2 100755
--- a/DetectorDescription/GeoModel/AtlasGeoModel/python/MuonGMJobProperties.py
+++ b/DetectorDescription/GeoModel/AtlasGeoModel/python/MuonGMJobProperties.py
@@ -33,11 +33,11 @@ class MuonGMFlags(CommonGMFlags, object):
         else: self.__dict__["HasMM"] = True
 
     def dump(self):
-        print "MuonGMFlags:"
-        print "Layout      = ",self.__dict__["Layout"]
-        print "HasCSC      = ",self.__dict__["HasCSC"]
-        print "HasSTGC     = ",self.__dict__["HasSTGC"]
-        print "HasMM       = ",self.__dict__["HasMM"]
+        print ("MuonGMFlags:")
+        print ("Layout      = ",self.__dict__["Layout"])
+        print ("HasCSC      = ",self.__dict__["HasCSC"])
+        print ("HasSTGC     = ",self.__dict__["HasSTGC"])
+        print ("HasMM       = ",self.__dict__["HasMM"])
 
 
 class GeoLayout(JobProperty):
@@ -84,10 +84,10 @@ class MuonGeometryFlags_JobProperties(JobPropertyContainer):
         self.hasMM.unlock()
 
     def dump(self):
-        print "Layout      = ", self.GeoLayout()
-        print "HasCSC      = ", self.hasCSC()
-        print "HasSTGC     = ", self.hasSTGC()
-        print "HasMM       = ", self.hasMM()
+        print ("Layout      = ", self.GeoLayout())
+        print ("HasCSC      = ", self.hasCSC())
+        print ("HasSTGC     = ", self.hasSTGC())
+        print ("HasMM       = ", self.hasMM())
 
 
 jobproperties.add_Container(MuonGeometryFlags_JobProperties)
-- 
GitLab