summaryrefslogtreecommitdiffstats
path: root/ipaserver/__init__.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-11-02 14:16:27 -0700
committerJason Gerard DeRose <jderose@redhat.com>2009-11-04 03:52:30 -0700
commit5782b882a725a0a626630cd361c6c4d3455449be (patch)
tree67b86987fd7c9b9d9b09b213c48b646ad36ce424 /ipaserver/__init__.py
parentbd619adb5c1cfcd9e72c18896aded82e2ab33faa (diff)
downloadfreeipa-5782b882a725a0a626630cd361c6c4d3455449be.tar.gz
freeipa-5782b882a725a0a626630cd361c6c4d3455449be.tar.xz
freeipa-5782b882a725a0a626630cd361c6c4d3455449be.zip
ipa-server-install now renders UI assets
Diffstat (limited to 'ipaserver/__init__.py')
-rw-r--r--ipaserver/__init__.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/ipaserver/__init__.py b/ipaserver/__init__.py
index 678120b8..1b622553 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):