summaryrefslogtreecommitdiffstats
path: root/examples/prompts/finalterm-shell-integration.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/prompts/finalterm-shell-integration.py')
-rwxr-xr-xexamples/prompts/finalterm-shell-integration.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/finalterm-shell-integration.py b/examples/prompts/finalterm-shell-integration.py
index 30c7a7f..254d226 100755
--- a/examples/prompts/finalterm-shell-integration.py
+++ b/examples/prompts/finalterm-shell-integration.py
@@ -3,6 +3,7 @@
Mark the start and end of the prompt with Final term (iterm2) escape sequences.
See: https://iterm2.com/finalterm.html
"""
+
import sys
from prompt_toolkit import prompt
@@ -39,5 +40,5 @@ if __name__ == "__main__":
# Output.
sys.stdout.write(BEFORE_OUTPUT)
- print("You said: %s" % answer)
+ print(f"You said: {answer}")
sys.stdout.write(AFTER_OUTPUT.format(command_status=0))