merge upstream changes

This commit is contained in:
Alex Kelly 2022-11-29 22:08:43 -05:00
commit 6781f994f9
21 changed files with 857 additions and 660 deletions

View file

@ -3,7 +3,13 @@ import logging
from . import app, conf
if __name__ == "__main__":
def main():
"""Start everything."""
log_format = "%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(message)s"
logging.basicConfig(level=50 - 10 * conf.VERBOSE, format=log_format)
app.run()
if __name__ == "__main__":
main()