Skip to content

Commit

Permalink
froster v0.14.18
Browse files Browse the repository at this point in the history
Solve ISSUE-91
  • Loading branch information
Victor Machado committed Jun 26, 2024
1 parent a97c9bc commit 9fd7cd6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions froster/froster.py
Original file line number Diff line number Diff line change
Expand Up @@ -1026,11 +1026,11 @@ def set_s3(self, aws: "AWSBoto"):
s3_buckets = aws.get_buckets()

# Add an option to create a new bucket
s3_buckets.append('+ Create new bucket')
s3_buckets.insert(0, '+ Create new bucket')

# Ask user to choose an existing aws s3 bucket or create a new one
s3_bucket = inquirer.list_input(
"Choose your aws s3 bucket",
"Choose your s3 bucket",
default=self.__get_configuration_entry('S3', 'bucket_name'),
choices=s3_buckets)

Expand All @@ -1039,7 +1039,7 @@ def set_s3(self, aws: "AWSBoto"):

# Get new bucket name
new_bucket_name = inquirer.text(
message='Enter new bucket name (default: froster-...)',
message='Enter new bucket name',
default='froster-',
validate=self.__inquirer_check_required)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "froster"
version = "0.14.17"
version = "0.14.18"
description = "Froster is a tool for easy data transfer between local file systems and AWS S3 storage."
authors = ["Victor Machado <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 9fd7cd6

Please sign in to comment.