We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 421c865 commit 698cad4Copy full SHA for 698cad4
plugins/settings/__init__.py
@@ -1,4 +1,4 @@
1
-import html.parser
+import html
2
import logging
3
import os
4
@@ -221,7 +221,7 @@ def show_popup_for(self, key_region):
221
def on_navigate(self, href):
222
"""Popup navigation event handler."""
223
command, _, argument = href.partition(":")
224
- argument = html.parser.HTMLParser().unescape(argument)
+ argument = html.unescape(argument)
225
226
if command == 'edit':
227
view_id = self.view.settings().get('edit_settings_other_view_id')
0 commit comments