log store true

master
JoYo 2022-01-05 19:25:49 -05:00
parent e496d7d52b
commit 94774b3f26
1 changed files with 2 additions and 2 deletions

View File

@ -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. " 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("-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") parser.add_argument("-p", "--eso_live_path")
args = parser.parse_args() args = parser.parse_args()
@ -85,7 +85,7 @@ def periodical_script():
def ttc(): def ttc():
parser = ArgumentParser(description="Tamriel Trade Centre price table updater.") parser = ArgumentParser(description="Tamriel Trade Centre price table updater.")
parser.add_argument("-v", "--verbose", action="count", help="verbose logging") 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") parser.add_argument("-p", "--eso_live_path")
args = parser.parse_args() args = parser.parse_args()