diff tests/hgweberror.py @ 51672:99632adff795 stable

py3: fix type of some elements of __all__ lists
author Manuel Jacob <me@manueljacob.de>
date Mon, 05 Aug 2024 20:47:17 +0200
parents 6000f5b25c9b
children
line wrap: on
line diff
--- a/tests/hgweberror.py	Thu Aug 01 11:14:58 2024 +0100
+++ b/tests/hgweberror.py	Mon Aug 05 20:47:17 2024 +0200
@@ -20,4 +20,4 @@
 
 def extsetup(ui):
     setattr(webcommands, 'raiseerror', raiseerror)
-    webcommands.__all__.append(b'raiseerror')
+    webcommands.__all__.append('raiseerror')