Skip to content
This repository was archived by the owner on Jan 31, 2022. It is now read-only.

Commit f80f955

Browse files
authored
Merge pull request #227 from cms-gem-daq-project/bdorney-patch-2
Bug Fix: Addresses #226
2 parents d38b974 + 3cc299c commit f80f955

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

testConnectivity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -815,11 +815,11 @@ def testConnectivity(args):
815815
pass
816816

817817
if args.firstStep > 5:
818-
printRed("The starting step number {0} you entered is outside the range of possible values: [1,6]".format(args.firstStep))
818+
printRed("The starting step number {0} you entered is outside the range of possible values: [1,5]".format(args.firstStep))
819819
exit(os.EX_USAGE)
820820
pass
821821

822-
if ((args.firstStep > 4) and (args.skipDACScan and args.skipScurve)):
822+
if ((args.firstStep >= 5) and (args.skipDACScan and args.skipScurve)):
823823
printRed("Sorry but you're asking me to skip all initial steps and all follow-up steps")
824824
printRed("This doesn't make sense; please reconsider")
825825
exit(os.EX_USAGE)

0 commit comments

Comments
 (0)