summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2013-05-05 10:29:44 -0500
committerSol Jerome <sol.jerome@gmail.com>2013-05-05 10:29:44 -0500
commit9a1fe832f52b68c4e61546171195cb53e4ff2585 (patch)
tree34de13a550623cdd219789bc69bb6f477a4ecf4a /src
parentad9b9481085d2679a790f7ad0736e5cda872555f (diff)
downloadbcfg2-9a1fe832f52b68c4e61546171195cb53e4ff2585.tar.gz
bcfg2-9a1fe832f52b68c4e61546171195cb53e4ff2585.tar.bz2
bcfg2-9a1fe832f52b68c4e61546171195cb53e4ff2585.zip
Proxy: Use ASCII quotes to make python 2 happy
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/lib/Bcfg2/Proxy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Proxy.py b/src/lib/Bcfg2/Proxy.py
index ca219af7e..9246c0f87 100644
--- a/src/lib/Bcfg2/Proxy.py
+++ b/src/lib/Bcfg2/Proxy.py
@@ -178,7 +178,7 @@ class SSLHTTPConnection(httplib.HTTPConnection):
httplib.HTTPConnection.__init__(self, host, port, strict, timeout)
else:
# the strict parameter is deprecated.
- # HTTP 0.9-style “Simple Responses” are not supported anymore.
+ # HTTP 0.9-style "Simple Responses" are not supported anymore.
httplib.HTTPConnection.__init__(self, host, port, timeout=timeout)
self.key = key
self.cert = cert