diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-04-04 18:25:52 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-04-04 18:25:52 -0400 |
commit | 3fb4653d8a0824fb182da0346a7a80b282564cd5 (patch) | |
tree | aa4453bece7cb9837dae569c57d9e28bda92c116 /IkiWiki | |
parent | 08fda4c9d374de1d3de3172a192d4d915d3dc0c1 (diff) |
Add missing newline to Confirm Password prompt.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Setup/Automator.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki/Setup/Automator.pm b/IkiWiki/Setup/Automator.pm index 7d9eca3af..c194d34be 100644 --- a/IkiWiki/Setup/Automator.pm +++ b/IkiWiki/Setup/Automator.pm @@ -117,6 +117,7 @@ sub import (@) { for (;;) { print "Choose a password: "; chomp($password=<STDIN>); + print "\n"; print "Confirm password: "; chomp($password2=<STDIN>); |