summaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorAlexander Shorin <kxepal@apache.org>2015-08-17 16:17:02 +0300
committerAlexander Shorin <kxepal@apache.org>2015-08-17 16:17:02 +0300
commiteb3451332e549c2ec30a8f9121130e623d4f9a6c (patch)
treed8c656d0cdd882b564158746bcfd4cabce810a66 /dev
parent587646f1fec6f665f70c97c24f3eef95780b409a (diff)
downloadcouchdb-eb3451332e549c2ec30a8f9121130e623d4f9a6c.tar.gz
Fix compatibility with Python 3.x
Diffstat (limited to 'dev')
-rwxr-xr-xdev/run2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/run b/dev/run
index 81993b5f7..dc9785a20 100755
--- a/dev/run
+++ b/dev/run
@@ -203,7 +203,7 @@ def find_haproxy():
)
(res, _) = p.communicate()
if res.strip():
- return res.strip()
+ return res.strip().decode()
return "/usr/sbin/haproxy"