diff options
author | Helmut Grohne <helmut@subdivi.de> | 2007-04-20 08:35:47 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2007-04-20 08:35:47 +0200 |
commit | 6480e3e42fd3830ea59260dc035b0c8d5ae4f8f4 (patch) | |
tree | ffb8ab02150bb4903af6079b9f35ac4fdc4efc44 /wsgitools | |
parent | 1637616a8c7dc16beb6630ccab24799e2974ccbd (diff) | |
download | wsgitools-6480e3e42fd3830ea59260dc035b0c8d5ae4f8f4.tar.gz |
export GzipWSGIFilter in wsgitools.filters
Diffstat (limited to 'wsgitools')
-rw-r--r-- | wsgitools/filters.py | 1 |
1 files changed, 1 insertions, 0 deletions
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): |