implement where condition

This commit is contained in:
Christophe Benz 2010-05-15 04:55:30 +02:00
commit 57b2243ada
4 changed files with 82 additions and 11 deletions

View file

@ -16,3 +16,11 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
from .simple import SimpleFormatter
__all__ = ['formatters_classes']
formatters_classes = dict(
simple=SimpleFormatter,
)