Skip to content

Commit

Permalink
Update to py-emmet@1.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeche committed Oct 11, 2020
1 parent 88e2d99 commit dc5a4b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion lib/abbreviation.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import re
import html
import traceback
import sublime
from ..emmet import Abbreviation as MarkupAbbreviation, markup_abbreviation, stylesheet_abbreviation
from ..emmet.config import Config
Expand Down Expand Up @@ -263,7 +264,8 @@ def create_tracker(editor: sublime.View, region: sublime.Region, params: dict) -
}
return AbbreviationTrackerError(abbreviation, region, config, tracker_params)
else:
print(repr(err))
print('Error while parsing abbreviation')
traceback.print_exc()


def store_tracker(editor: sublime.View, tracker: AbbreviationTracker):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
py-emmet~=1.1.8
py-emmet~=1.1.9

0 comments on commit dc5a4b5

Please sign in to comment.