From 06ea5fde50995071a23c0c4aaf21b40720a25d1b Mon Sep 17 00:00:00 2001 From: Dramelac Date: Tue, 20 Sep 2022 10:48:07 +0200 Subject: [PATCH] Fix parameter merge --- examples/ticketer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ticketer.py b/examples/ticketer.py index 780d93b48..bfb736117 100755 --- a/examples/ticketer.py +++ b/examples/ticketer.py @@ -883,8 +883,8 @@ def run(self): 'created for (default = 500)') parser.add_argument('-extra-sid', action="store", help='Comma separated list of ExtraSids to be included inside the ticket\'s PAC') parser.add_argument('-extra-pac', action='store_true', help='Populate your ticket with extra PAC (UPN_DNS, ATTRIBUTES and REQUESTOR)') - parser.add_argument('-duration', action="store", default = '3650', help='Amount of days till the ticket expires ' - '(default = 365*10)') + parser.add_argument('-duration', action="store", default = '87600', help='Amount of hours till the ticket expires ' + '(default = 24*365*10)') parser.add_argument('-ts', action='store_true', help='Adds timestamp to every logging output') parser.add_argument('-debug', action='store_true', help='Turn DEBUG output ON')