log store true
parent
e496d7d52b
commit
94774b3f26
|
@ -14,7 +14,7 @@ def periodical_script():
|
|||
description="Visit https://www.esoui.com/ to search for addons and their dependencies URLs. Edit addons.yaml in the ESO live path and add the URL for each addon for installation. "
|
||||
)
|
||||
parser.add_argument("-v", "--verbose", action="count", help="verbose logging")
|
||||
parser.add_argument("-l", "--log")
|
||||
parser.add_argument("-l", "--log", action="store_true")
|
||||
parser.add_argument("-p", "--eso_live_path")
|
||||
args = parser.parse_args()
|
||||
|
||||
|
@ -85,7 +85,7 @@ def periodical_script():
|
|||
def ttc():
|
||||
parser = ArgumentParser(description="Tamriel Trade Centre price table updater.")
|
||||
parser.add_argument("-v", "--verbose", action="count", help="verbose logging")
|
||||
parser.add_argument("-l", "--log")
|
||||
parser.add_argument("-l", "--log", action="store_true")
|
||||
parser.add_argument("-p", "--eso_live_path")
|
||||
args = parser.parse_args()
|
||||
|
||||
|
|
Loading…
Reference in New Issue