Fixing some seed reporting

This commit is contained in:
aerinon
2020-03-23 15:40:56 -06:00
parent 4fc15e84fc
commit 0b13db754d
2 changed files with 10 additions and 4 deletions

View File

@@ -53,7 +53,8 @@ def start():
if args.gui:
from Gui import guiMain
guiMain(args)
elif args.count is not None:
elif args.count is not None and args.count > 1:
random.seed(None)
seed = args.seed or random.randint(0, 999999999)
failures = []
logger = logging.getLogger('')