# HG changeset patch # User HackEso # Date 1604500693 0 # Node ID 9e69a48ed4815d806efe6b415607c0aa7e6908df # Parent cf652da78b89016d20a2ecfdf248e3c8e63cf6cf `` perl -pi -e \'s/xrange/range/\' /hackenv/bin/password diff -r cf652da78b89 -r 9e69a48ed481 bin/password --- a/bin/password Wed Nov 04 14:37:41 2020 +0000 +++ b/bin/password Wed Nov 04 14:38:13 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 range(15)))