chyron-&-text-updater-commands #37

Merged
alex_orid merged 5 commits from chyron-&-text-updater-commands into v2.0 2021-04-30 18:17:36 +00:00
4 changed files with 8 additions and 5 deletions
Showing only changes of commit 5d1c442c29 - Show all commits

View File

@ -37,8 +37,11 @@ class Command_chyron_v2(AbstractCommand, metaclass=ABCMeta):
tempName = user.lower()
if name == tempName:
returnString = user + " has updated the chyron!"
temp = chyron_module.Chyron_Module()
temp.main(rest)
chyron_ = chyron_module.Chyron_Module()
chyron_.main(rest)
chyron_.chyron_stringUpdater()
chyron_.updateChyronFile()
returnString = chyron_.chyron_computedString
return returnString

View File

@ -12,7 +12,7 @@ praxis_logger_obj.log("\n -Starting Logs: " + os.path.basename(__file__))
api = flask.Flask(__name__)
# enable/disable this to get web pages of crashes returned
api.config["DEBUG"] = True
api.config["DEBUG"] = False
loadedRewards = {}

View File

@ -12,7 +12,7 @@ praxis_logger_obj.log("\n -Starting Logs: " + os.path.basename(__file__))
api = flask.Flask(__name__)
# enable/disable this to get web pages of crashes returned
api.config["DEBUG"] = True
api.config["DEBUG"] = False
loadedCommands = {}

View File

@ -14,7 +14,7 @@ praxis_logger_obj.log("\n -Starting Logs: " + os.path.basename(__file__))
api = flask.Flask(__name__)
# enable/disable this to get web pages of crashes returned
api.config["DEBUG"] = True
api.config["DEBUG"] = False
def init():
praxis_logger_obj.log("init stuff")