summaryrefslogtreecommitdiffstats
path: root/examples/prompts/html-input.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/prompts/html-input.py')
-rwxr-xr-xexamples/prompts/html-input.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/html-input.py b/examples/prompts/html-input.py
index 4c51737..e8ecc00 100755
--- a/examples/prompts/html-input.py
+++ b/examples/prompts/html-input.py
@@ -3,6 +3,7 @@
Simple example of a syntax-highlighted HTML input line.
(This requires Pygments to be installed.)
"""
+
from pygments.lexers.html import HtmlLexer
from prompt_toolkit import prompt
@@ -11,7 +12,7 @@ from prompt_toolkit.lexers import PygmentsLexer
def main():
text = prompt("Enter HTML: ", lexer=PygmentsLexer(HtmlLexer))
- print("You said: %s" % text)
+ print(f"You said: {text}")
if __name__ == "__main__":