# HG changeset patch # User HackEso # Date 1604500559 0 # Node ID 2678f7ed17a85ee0a0998c8c0f5460e8be965692 # Parent f468498767e6e0fd9bfa3c404f34ce62efadf6bc revert diff -r f468498767e6 -r 2678f7ed17a8 bin/password --- a/bin/password Wed Nov 04 14:35:42 2020 +0000 +++ b/bin/password Wed Nov 04 14:35:59 2020 +0000 @@ -1,6 +1,6 @@ #!/usr/bin/python -import secrets +import random import string -print "".join(secrets.choice(string.ascii_lowercase) for _ in xrange(15)) +print "".join(random.choice(string.ascii_lowercase) for _ in xrange(15))