diff hgext/highlight/__init__.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 534c0dadd210
children f4733654f144
line wrap: on
line diff
--- a/hgext/highlight/__init__.py	Thu Aug 01 11:14:58 2024 +0100
+++ b/hgext/highlight/__init__.py	Mon Aug 05 20:47:17 2024 +0200
@@ -105,4 +105,4 @@
     )
     extensions.wrapfunction(webcommands, 'annotate', annotate_highlight)
     webcommands.highlightcss = generate_css
-    webcommands.__all__.append(b'highlightcss')
+    webcommands.__all__.append('highlightcss')