Skip to content

Commit 83c2711

Browse files
authored
Merge pull request awslabs#250 from joguSD/latest-cli
Update to support the latest aws-cli
2 parents 8950f03 + b757693 commit 83c2711

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@ language: python
22

33
matrix:
44
include:
5-
- python: 2.6
6-
env: TEST_TYPE=test
75
- python: 2.7
86
env: TEST_TYPE=test
97
- python: 2.7
108
env: TEST_TYPE=check
11-
- python: 3.3
12-
env: TEST_TYPE=test
139
- python: 3.4
1410
env: TEST_TYPE=test
1511
- python: 3.5

awsshell/makeindex.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@
55

66
from six import BytesIO
77
from docutils.core import publish_string
8-
from botocore.docs.bcdoc import textwriter
98
import awscli.clidriver
109
from awscli.argprocess import ParamShorthandDocGen
10+
try:
11+
from botocore.docs.bcdoc import textwriter
12+
except ImportError:
13+
from awscli.bcdoc import textwriter
1114

1215
from awsshell import determine_doc_index_filename
1316
from awsshell.utils import remove_html

0 commit comments

Comments
 (0)