[PATCH] dispatch: properly import custom debugger

Jordi Gutiérrez Hermoso jordigh at octave.org
Tue Oct 3 19:51:55 UTC 2023


# HG changeset patch
# User Jordi Gutiérrez Hermoso <jordigh at octave.org>
# Date 1696362635 14400
#      Tue Oct 03 15:50:35 2023 -0400
# Node ID 1ace547f92f232363f54a6759f3005fc6cb21157
# Parent  752c5a5b73c687588ad0f52a7d9d3e0242709a06
dispatch: properly import custom debugger

The __import__ command takes strings, not bytestrings.

I'm probably the only person who ever used this feature, but I'd much
rather debug hg with pudb than with pdb.

diff --git a/mercurial/dispatch.py b/mercurial/dispatch.py
--- a/mercurial/dispatch.py
+++ b/mercurial/dispatch.py
@@ -413,7 +413,7 @@ def _runcatch(req):
                     # debugging has been requested
                     with demandimport.deactivated():
                         try:
-                            debugmod = __import__(debugger)
+                            debugmod = __import__(debugger.decode('utf8'))
                         except ImportError:
                             pass  # Leave debugmod = pdb
 


More information about the Mercurial-devel mailing list