all repos — listfix @ d3783f98e966f4311b5173dd99f8651893b74440

Postfix Mailing List Software; Maintained on behalf the of Agency Economy Incorporated NFP.

Cleanup comments.

	modified:   listfix.py
Brian Barto bartobrian@gmail.com
Wed, 06 Apr 2022 14:13:57 -0400
commit

d3783f98e966f4311b5173dd99f8651893b74440

parent

ab1a175e3797521ad31d1856bb1b9b425af4f505

1 files changed, 2 insertions(+), 8 deletions(-)

jump to
M listfix.pylistfix.py

@@ -4,22 +4,16 @@ import sys

import os from listfix import Args, DB, Email, Errors, Log, Test +## Setup + listfix_dir = os.path.dirname(os.path.realpath(__file__)) -## Get log object - log = Log(listfix_dir + "/listfix.log") -## Set up the exception handler - er = Errors(debug=True) er.set_exception_handler() - -## Connect to DB (create DB if needed) and check tables. db = DB(listfix_dir + "/listfix.sqlite3") - -## Get args args = Args(sys.argv) command = args.get_command()