From 6480e3e42fd3830ea59260dc035b0c8d5ae4f8f4 Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Fri, 20 Apr 2007 08:35:47 +0200 Subject: export GzipWSGIFilter in wsgitools.filters --- wsgitools/filters.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wsgitools/filters.py b/wsgitools/filters.py index 32d8092..f892381 100644 --- a/wsgitools/filters.py +++ b/wsgitools/filters.py @@ -235,6 +235,7 @@ class EncodeWSGIFilter(BaseWSGIFilter): return (header, value) return (header, "%s; charset=%s" % (value, self.charset)) +__all__.append("GzipWSGIFilter") class GzipWSGIFilter(BaseWSGIFilter): """Compresses content using gzip.""" def __init__(self): -- cgit v1.2.3