From 4fa45f9249268f090b405619c08375aff887922c Mon Sep 17 00:00:00 2001
From: Vakho Tsulaia <vakhtang.tsulaia@cern.ch>
Date: Tue, 16 May 2017 23:09:11 +0200
Subject: [PATCH] Fixed crash in dumpMasterSequence() (ATEAM-411)

Former-commit-id: b760b40317f9df94a8a6edbc694f43389521eee9
---
 Control/AthenaCommon/python/AlgSequence.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Control/AthenaCommon/python/AlgSequence.py b/Control/AthenaCommon/python/AlgSequence.py
index 57aa94386d9..72f036da57c 100755
--- a/Control/AthenaCommon/python/AlgSequence.py
+++ b/Control/AthenaCommon/python/AlgSequence.py
@@ -230,9 +230,9 @@ def dumpMasterSequence():
     # otherwise, manually do it...
     dumpSequence( AthSequencer ("AthMasterSeq"), indent=0 )
     dumpSequence( AthSequencer ("AthFilterSeq"), indent=1 )
-    dumpSequence( AlgSequence  ("AthBeginSeq"),  indent=2 )
-    dumpSequence( AlgSequence  ("AthCondSeq"),   indent=3 )
+    dumpSequence( AthSequencer ("AthBeginSeq"),  indent=2 )
+    dumpSequence( AthSequencer ("AthCondSeq"),   indent=3 )
     dumpSequence( AlgSequence  ("TopAlg"),       indent=3 )
-    dumpSequence( AlgSequence  ("AthEndSeq"),    indent=2 )
-    dumpSequence( AthSequencer ("AthOutSeq"),    indent=2 )
-    dumpSequence( AthSequencer ("AthRegSeq"),    indent=2 )
+    dumpSequence( AthSequencer ("AthEndSeq"),    indent=2 )
+    dumpSequence( AthSequencer ("AthOutSeq"),    indent=1 )
+    dumpSequence( AthSequencer ("AthRegSeq"),    indent=1 )
-- 
GitLab