diff options
Diffstat (limited to 'subcmds/init.py')
-rw-r--r-- | subcmds/init.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/init.py b/subcmds/init.py index 9ac42d8e..44517877 100644 --- a/subcmds/init.py +++ b/subcmds/init.py | |||
@@ -215,7 +215,7 @@ to update the working directory files. | |||
215 | 215 | ||
216 | if not opt.quiet: | 216 | if not opt.quiet: |
217 | print() | 217 | print() |
218 | print("Your identity is: %s <%s>" % (name, email)) | 218 | print(f"Your identity is: {name} <{email}>") |
219 | print("is this correct [y/N]? ", end="", flush=True) | 219 | print("is this correct [y/N]? ", end="", flush=True) |
220 | a = sys.stdin.readline().strip().lower() | 220 | a = sys.stdin.readline().strip().lower() |
221 | if a in ("yes", "y", "t", "true"): | 221 | if a in ("yes", "y", "t", "true"): |