diff options
Diffstat (limited to 'ipaserver')
-rw-r--r-- | ipaserver/__init__.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ipaserver/__init__.py b/ipaserver/__init__.py index 678120b87..1b6225536 100644 --- a/ipaserver/__init__.py +++ b/ipaserver/__init__.py @@ -39,10 +39,11 @@ except ImportError: pass - -# This module is from paste: +# START code from paste +# Red Hat does not hold the copyright to the following code. The following code +# is from paste: # http://pythonpaste.org/ -# Which in turn was based on Robert Brewer's: +# Which in turn was based on Robert Brewer's modpython_gateway: # http://projects.amor.org/misc/svn/modpython_gateway.py class InputWrapper(object): @@ -185,7 +186,7 @@ class Handler(object): self.started = True self.request.write(data) -# END module from paste +# END code from paste def adapter(req, app): |