Fixed format of access key ID and secret access key.

This commit is contained in:
acsbendi 2019-07-04 20:20:08 +02:00
commit 48f0c6f194
3 changed files with 5 additions and 4 deletions

View file

@ -7,7 +7,7 @@ import six
def random_alphanumeric(length):
return ''.join(six.text_type(
random.choice(
string.ascii_letters + string.digits
string.ascii_letters + string.digits + "+" + "/"
)) for _ in range(length)
)