mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-14 02:26:58 -07:00
Update certifi 2020.11.08
This commit is contained in:
parent
189930918a
commit
b5e6861032
4 changed files with 318 additions and 259 deletions
|
@ -1,2 +1,12 @@
|
|||
from certifi import where
|
||||
print(where())
|
||||
import argparse
|
||||
|
||||
from certifi import contents, where
|
||||
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("-c", "--contents", action="store_true")
|
||||
args = parser.parse_args()
|
||||
|
||||
if args.contents:
|
||||
print(contents())
|
||||
else:
|
||||
print(where())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue