Skip to content

Commit

Permalink
updated prefix for "Bucket ID"
Browse files Browse the repository at this point in the history
  • Loading branch information
thekaranatic authored Jul 14, 2024
1 parent 190fe0e commit 5f8c51a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def new_bucket():

# create a random alphanumeric string for Bucket ID always followed by prefix 'C2CBUCK'
BUCKET_ID_RAND = ''.join(secrets.choice(string.ascii_letters + string.digits) for x in range(0,13))
BUCKET_ID = "srujan" + BUCKET_ID_RAND
BUCKET_ID = "buckId" + BUCKET_ID_RAND

BUCKET_NAME_RAND = ''.join(secrets.choice(string.ascii_letters + string.digits) for x in range(0,13))
BUCKET_NAME = "buckname" + BUCKET_NAME_RAND
Expand Down Expand Up @@ -477,4 +477,4 @@ def main():

if __name__ == "__main__":
# calling the main fucntion
main()
main()

0 comments on commit 5f8c51a

Please sign in to comment.