1
0
mirror of https://github.com/redelmann/scat synced 2025-01-10 06:34:20 +01:00

Minor code quality changes.

This commit is contained in:
Romain Edelmann 2013-08-09 17:29:44 +02:00
parent 3edbc3421d
commit 6608dce71e

View File

@ -71,7 +71,7 @@ getPassword = do
getPassConfirm = do
a <- askPassword "Password: "
b <- askPassword "Confirm: "
if (a == b)
if a == b
then return a
else do
printVerbose "Passwords do not match, please retry.\n"