# HG changeset patch # User HackEso # Date 1604500661 0 # Node ID cf652da78b89016d20a2ecfdf248e3c8e63cf6cf # Parent af405b8a72358dfe2fff019c34b6360373643d65 `` perl -pi -e \'s/print (.*)/print($1)/\' /hackenv/bin/password diff -r af405b8a7235 -r cf652da78b89 bin/password --- a/bin/password Wed Nov 04 14:36:52 2020 +0000 +++ b/bin/password Wed Nov 04 14:37:41 2020 +0000 @@ -3,4 +3,4 @@ import secrets import string -print "".join(secrets.choice(string.ascii_lowercase) for _ in xrange(15)) +print("".join(secrets.choice(string.ascii_lowercase) for _ in xrange(15)))