diff --git a/src/wormhole/cli/cmd_receive.py b/src/wormhole/cli/cmd_receive.py index fe44411..d9ba896 100644 --- a/src/wormhole/cli/cmd_receive.py +++ b/src/wormhole/cli/cmd_receive.py @@ -339,7 +339,7 @@ class Receiver: def _ask_permission(self): with self.args.timing.add("permission", waiting="user") as t: while True and not self.args.accept_file: - ok = six.moves.input("ok? (y/n): ") + ok = six.moves.input("ok? (y/N): ") if ok.lower().startswith("y"): if os.path.exists(self.abs_destname): self._remove_existing(self.abs_destname)