We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc26b8b commit dba0e5cCopy full SHA for dba0e5c
croudtech_ecs_tools/cli.py
@@ -10,7 +10,9 @@ class EcsTools:
10
11
def __init__(self, region):
12
self.region = region
13
- self.ecs_client = boto3.client("ecs", region=self.region)
+ self.ecs_client = boto3.client("ecs", config={
14
+ "region_name": self.region
15
+ })
16
17
@property
18
def clusters(self):
setup.py
@@ -1,7 +1,7 @@
1
from setuptools import setup
2
import os
3
4
-VERSION = "0.1"
+VERSION = "0.1.1"
5
6
7
def get_long_description():
0 commit comments