patchbomb: stop using the `pycompat.open()` shim
Turns out, this module is using `open()` without specifying a mode, and is
therefore using unicode. But, it appears to only be the introduction message.
--- a/hgext/patchbomb.py Thu Dec 05 12:51:59 2024 -0500
+++ b/hgext/patchbomb.py Thu Dec 05 12:54:57 2024 -0500
@@ -82,7 +82,6 @@
import socket
from mercurial.i18n import _
-from mercurial.pycompat import open
from mercurial.node import bin
from mercurial import (
cmdutil,