Index: Makefile =================================================================== --- Makefile (revision 519633) +++ Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= hatop PORTVERSION= 0.7.7 -PORTREVISION= 3 +PORTREVISION= 4 DISTVERSIONPREFIX= v CATEGORIES= sysutils net Index: files/patch-bin_hatop =================================================================== --- files/patch-bin_hatop (revision 519633) +++ files/patch-bin_hatop (working copy) @@ -1,5 +1,14 @@ ---- bin/hatop.orig 2019-12-03 21:58:07 UTC +--- bin/hatop.orig 2019-12-09 21:46:21 UTC +++ bin/hatop +@@ -404,7 +404,7 @@ class Socket: + data = self._socket.recv(HAPROXY_CLI_BUFSIZE) + if not data: + raise SocketError('error while waiting for prompt') +- return data ++ return data.decode() + + def connect(self): + # Initialize socket connection @@ -414,16 +414,16 @@ class Socket: # Enter the interactive socket mode. This requires HAProxy 1.4+ and # allows us to error out early if connected to an older version.