Skip to content

Commit

Permalink
import cleaning beaknit#34
Browse files Browse the repository at this point in the history
  • Loading branch information
dgomesbr committed Aug 3, 2016
1 parent dd2f935 commit 4bf6868
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/build-snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# vim: ai ts=4 sts=4 et sw=4
"""Build snippets from documentation from AWS."""
import requests
import collections
from collections import OrderedDict
from templating import build_with_template
from lxml import html

Expand All @@ -17,7 +17,7 @@ def build_index():
page = requests.get(toc_uri)
doc = html.fromstring(page.text.decode('utf-8'))
tree = doc.xpath(elem_expr)
index = collections.OrderedDict()
index = OrderedDict()

for e in tree:
arn = e.text_content()
Expand Down

0 comments on commit 4bf6868

Please sign in to comment.