summaryrefslogtreecommitdiff
path: root/wsgitools
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2007-04-20 08:35:47 +0200
committerHelmut Grohne <helmut@subdivi.de>2007-04-20 08:35:47 +0200
commit6480e3e42fd3830ea59260dc035b0c8d5ae4f8f4 (patch)
treeffb8ab02150bb4903af6079b9f35ac4fdc4efc44 /wsgitools
parent1637616a8c7dc16beb6630ccab24799e2974ccbd (diff)
downloadwsgitools-6480e3e42fd3830ea59260dc035b0c8d5ae4f8f4.tar.gz
export GzipWSGIFilter in wsgitools.filters
Diffstat (limited to 'wsgitools')
-rw-r--r--wsgitools/filters.py1
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):