all repos — listfix @ 2c436afe9b73b8ebee1f1063fd20c9bc8917fb94

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

Make init file import DB and EMail so I can import them without using
dot notation for th epackage name.

	modified:   listfix.py
	modified:   listfix/__init__.py
Brian Barto bartobrian@gmail.com
Tue, 29 Mar 2022 15:38:39 -0400
commit

2c436afe9b73b8ebee1f1063fd20c9bc8917fb94

parent

072a6a4514d58922c5848206369cbe209c765b2b

2 files changed, 4 insertions(+), 3 deletions(-)

jump to
M listfix.pylistfix.py

@@ -3,8 +3,7 @@

import sys import re import os -from listfix.db import DB -from listfix.email import Email +from listfix import DB, Email ######################## ## Function Defs
M listfix/__init__.pylistfix/__init__.py

@@ -1,1 +1,3 @@

-# Dummy file to make this directory a package. + +from .db import DB +from .email import Email