Skip to content

Commit

Permalink
Merge pull request #36 from Dramelac/patch-1
Browse files Browse the repository at this point in the history
Fix parameter merge
  • Loading branch information
ShutdownRepo authored Sep 26, 2022
2 parents 456289b + 06ea5fd commit 2d1e373
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/ticketer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down

0 comments on commit 2d1e373

Please sign in to comment.