Skip to content

Commit

Permalink
fix message
Browse files Browse the repository at this point in the history
  • Loading branch information
antonipy committed Dec 18, 2021
1 parent 9eb3dec commit 47c7ae8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
setup(
name = 'slapr',
packages = ['slapr'],
version = '1.3',
version = '1.4',
license='gpl-3.0',
description = 'A simple tool that allows you to change your default AWS CLI profile.',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Antoni Yanev',
author_email = 'antonipyanev@gmail.com',
url = 'https://github.com/antonipy/slapr',
download_url = 'https://github.com/antonipy/slapr/archive/refs/tags/1.3.tar.gz',
download_url = 'https://github.com/antonipy/slapr/archive/refs/tags/1.4.tar.gz',
keywords = ['aws', 'awscli', 'awscliv2', 'linux', 'tools'],
install_requires=[
'inquirer==2.8.0',
Expand Down
2 changes: 1 addition & 1 deletion slapr/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def cli():
# Check if the user has an AWS_PROFILE environment variable
if 'AWS_PROFILE' in os.environ.keys():
sys.exit('''\nYou have set the AWS_PROFILE environment variable.
\nPlease unset it and run the command again.\n''')
\nPlease unset it and run slapr again.\n''')

config = configparser.ConfigParser()
config.read(config_path)
Expand Down

0 comments on commit 47c7ae8

Please sign in to comment.