Chromium Code Reviews| Index: boto/ec2/instance.py |
| diff --git a/boto/ec2/instance.py b/boto/ec2/instance.py |
| index afb593f235e50c9384ad9b6959877801355233eb..a397f9590193af277d4393f77d4a018977db6af9 100644 |
| --- a/boto/ec2/instance.py |
| +++ b/boto/ec2/instance.py |
| @@ -256,7 +256,7 @@ class Instance(TaggedEC2Object): |
| :rtype: list |
| :return: A list of the instances stopped |
| """ |
| - rs = self.connection.stop_instances([self.id]) |
| + rs = self.connection.stop_instances([self.id], force) |
| if len(rs) > 0: |
| self._update(rs[0]) |