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

Commit

Permalink
Merge pull request #227 from cms-gem-daq-project/bdorney-patch-2
Browse files Browse the repository at this point in the history
Bug Fix: Addresses #226
mexanick authored Mar 5, 2019
2 parents d38b974 + 3cc299c commit f80f955
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testConnectivity.py
Original file line number Diff line number Diff line change
@@ -815,11 +815,11 @@ def testConnectivity(args):
pass

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

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

0 comments on commit f80f955

Please sign in to comment.