Skip to content

Commit

Permalink
python 3.3 compatible string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
braver committed Nov 7, 2020
1 parent 8132487 commit ab88631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion less_completions.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ def complete_property_value(self, view, prefix, pt):
prop = matches.group(1)
values = self.props.get(prop)
if values:
details = f"<code>{prop}</code> property-value"
details = "<code>{prop}</code> property-value".format(prop=prop)

if next_none_whitespace(view, pt) == ";":
suffix = ""
Expand Down

0 comments on commit ab88631

Please sign in to comment.