Skip to content

Commit a2c33a7

Browse files
committed
Tweaks plus readthedocs
1 parent 804e663 commit a2c33a7

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

.readthedocs.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Read the Docs configuration file
2+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3+
4+
# Required
5+
version: 2
6+
7+
mkdocs:
8+
configuration: mkdocs.yml
9+
fail_on_warning: false
10+
11+
# Optionally build your docs in additional formats such as PDF and ePub
12+
formats: all
13+
14+
# Optionally set the version of Python and requirements required to build your docs
15+
python:
16+
version: 3.7
17+
install:
18+
- requirements: docs/requirements-docs.txt

docs/requirements-docs.txt

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
mkdocs==1.1.2
2+
mkdocs-material==6.2.8
3+
mkdocs-material-extensions==1.0.1
4+
mkdocstrings==0.14.0
5+
atomicwrites==1.4.0
6+
distlib==0.3.1
7+
filelock==3.0.12
8+
Pygments==2.8.0
9+
pymdown-extensions==8.1.1
10+
pytkdocs==0.10.1

endgame/command/list_resources.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ def list_resources(service, profile, region, cloak, excluded_names, excluded_ser
8383
sts_client = get_boto3_client(profile=profile, service="sts", region="us-east-1", cloak=cloak)
8484
current_account_id = get_current_account_id(sts_client=sts_client)
8585
if user_provided_service == "all" and region == "all":
86-
logger.warning("--service all and --region all detected; listing all resources across all services in the "
87-
"account. This might take a while - about 5 minutes.")
86+
logger.critical("'--service all' and '--region all' detected; listing all resources across all services in the "
87+
"account. This might take a while - about 5 minutes.")
8888
elif region == "all":
8989
logger.debug("'--region all' selected; listing resources across the entire account, so this might take a while")
9090
else:

0 commit comments

Comments
 (0)