Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Fix typo bug in autoscale tutorial.
Browse files Browse the repository at this point in the history
  • Loading branch information
garnaat committed Apr 24, 2013
1 parent dfa456f commit 6df1ae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/autoscale_tut.rst
Expand Up @@ -202,7 +202,7 @@ To retrieve the instances in your autoscale group:
>>> conn.get_all_groups(names=['my_group'])[0]
>>> instance_ids = [i.instance_id for i in group.instances]
>>> reservations = ec2.get_all_instances(instance_ids)
>>> instances = [i for i in reservations for i in r.instances]
>>> instances = [i for r in reservations for i in r.instances]

To delete your autoscale group, we first need to shutdown all the
instances:
Expand Down

0 comments on commit 6df1ae6

Please sign in to comment.