enhance formatters

This commit is contained in:
Christophe Benz 2010-05-21 19:19:28 +02:00
commit 2ddc249b2b
6 changed files with 140 additions and 51 deletions

View file

@ -15,12 +15,14 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
from .multiline import MultilineFormatter
from .simple import SimpleFormatter
__all__ = ['formatters_classes']
__all__ = ['formatters']
formatters_classes = dict(
simple=SimpleFormatter,
formatters = dict(
multiline=MultilineFormatter(),
simple=SimpleFormatter(),
)