Skip to content

Commit

Permalink
Merge pull request #4 from sjones4/topic-elbv2-mapping
Browse files Browse the repository at this point in the history
Service mapping for elbv2
  • Loading branch information
obino authored Mar 11, 2021
2 parents 6f9bd81 + b3c1942 commit 4c8dccb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2
0.3
1 change: 1 addition & 0 deletions awscli_plugin_eucalyptus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
COMMAND_SERVICE_MAP = {
'cloudwatch': 'monitoring',
'elb': 'elasticloadbalancing',
'elbv2': 'elasticloadbalancing',
's3api': 's3'
}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

project_dir = path.abspath(path.dirname(__file__))
with open(path.join(project_dir, 'VERSION'), 'rb') as version:
version = version.read().decode('UTF-8')
version = version.read().decode('UTF-8').strip()
with open(path.join(project_dir, 'README.md'), 'rb') as readme:
long_description = readme.read().decode('UTF-8')

Expand Down

0 comments on commit 4c8dccb

Please sign in to comment.