diff options
| author | Alexander Shorin <kxepal@apache.org> | 2015-08-17 16:17:02 +0300 |
|---|---|---|
| committer | Alexander Shorin <kxepal@apache.org> | 2015-08-17 16:17:02 +0300 |
| commit | eb3451332e549c2ec30a8f9121130e623d4f9a6c (patch) | |
| tree | d8c656d0cdd882b564158746bcfd4cabce810a66 /dev | |
| parent | 587646f1fec6f665f70c97c24f3eef95780b409a (diff) | |
| download | couchdb-eb3451332e549c2ec30a8f9121130e623d4f9a6c.tar.gz | |
Fix compatibility with Python 3.x
Diffstat (limited to 'dev')
| -rwxr-xr-x | dev/run | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -203,7 +203,7 @@ def find_haproxy(): ) (res, _) = p.communicate() if res.strip(): - return res.strip() + return res.strip().decode() return "/usr/sbin/haproxy" |
