summaryrefslogtreecommitdiff
path: root/wsgitools/filters.py
diff options
context:
space:
mode:
Diffstat (limited to 'wsgitools/filters.py')
-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):