summaryrefslogtreecommitdiffstats
path: root/examples/prompts/history/persistent-history.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:15 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:15 +0000
commit6dc655898df34ad424dfc467a8b276fdf31bd791 (patch)
tree0a3f3addbfc0b81e3850a628afe62ce830a8b0f3 /examples/prompts/history/persistent-history.py
parentReleasing progress-linux version 3.0.43-2~progress7.99u1. (diff)
downloadprompt-toolkit-6dc655898df34ad424dfc467a8b276fdf31bd791.tar.xz
prompt-toolkit-6dc655898df34ad424dfc467a8b276fdf31bd791.zip
Merging upstream version 3.0.46.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'examples/prompts/history/persistent-history.py')
-rwxr-xr-xexamples/prompts/history/persistent-history.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/history/persistent-history.py b/examples/prompts/history/persistent-history.py
index 2bdb758..6299bdc 100755
--- a/examples/prompts/history/persistent-history.py
+++ b/examples/prompts/history/persistent-history.py
@@ -4,6 +4,7 @@ Simple example of a CLI that keeps a persistent history of all the entered
strings in a file. When you run this script for a second time, pressing
arrow-up will go back in history.
"""
+
from prompt_toolkit import PromptSession
from prompt_toolkit.history import FileHistory
@@ -18,7 +19,7 @@ def main():
while True:
text = session.prompt("Say something: ")
- print("You said: %s" % text)
+ print(f"You said: {text}")
if __name__ == "__main__":