summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-02-12 07:50:15 -0500
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-02-12 08:35:33 -0500
commit5aece8c011222d998c56c7c114143c93ce68c0c4 (patch)
tree270fd59bacad339ad143db50f921f8193c02a655 /src
parent96628400ced3b6dfc1ef35692f5e5a3ca388749a (diff)
downloadbcfg2-5aece8c011222d998c56c7c114143c93ce68c0c4.tar.gz
bcfg2-5aece8c011222d998c56c7c114143c93ce68c0c4.tar.bz2
bcfg2-5aece8c011222d998c56c7c114143c93ce68c0c4.zip
fixed address tuple from CherryPy core
Diffstat (limited to 'src')
-rw-r--r--src/lib/Bcfg2/Server/CherryPyCore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/CherryPyCore.py b/src/lib/Bcfg2/Server/CherryPyCore.py
index b4c296d4a..fa66abce9 100644
--- a/src/lib/Bcfg2/Server/CherryPyCore.py
+++ b/src/lib/Bcfg2/Server/CherryPyCore.py
@@ -65,7 +65,7 @@ class Core(BaseCore):
# FIXME: Get client cert
cert = None
- address = (cherrypy.request.remote.ip, cherrypy.request.remote.name)
+ address = (cherrypy.request.remote.ip, cherrypy.request.remote.port)
if not self.check_acls(address[0]):
raise cherrypy.HTTPError(401)