From 8cd48988b67d1c81751ba8587bb4b40ce17cb40a Mon Sep 17 00:00:00 2001 From: Isaacdelly Date: Sun, 20 Nov 2022 23:16:23 -0800 Subject: [PATCH] Add files via upload --- plutus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plutus.py b/plutus.py index aaea265..9e8d1c7 100644 --- a/plutus.py +++ b/plutus.py @@ -125,10 +125,10 @@ if __name__ == '__main__': sys.exit(-1) case 'substring': substring = arg.split['='][1] - if substring > 0 and substring < 35: + if substring > 0 and substring < 27: args['substring'] = substring else: - print('invalid input. substring must be greater than 0 and less than 35') + print('invalid input. substring must be greater than 0 and less than 27') sys.exit(-1) print('reading database files...')