~vishvananda/nova/lp827024

« back to all changes in this revision

Viewing changes to nova/virt/vmwareapi_conn.py

  • Committer: Tarmac
  • Author(s): Matthew Hooker
  • Date: 2011-08-10 14:53:53 UTC
  • mfrom: (1355.2.24 pylint-fixes)
  • Revision ID: tarmac-20110810145353-rmc0lkjirgunxe08
These fixes are the result of trolling the pylint violations here

https://jenkins.openstack.org/job/nova-pylint-errors/violations/

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
        """Reboot VM instance."""
138
138
        self._vmops.reboot(instance, network_info)
139
139
 
140
 
    def destroy(self, instance, network_info):
 
140
    def destroy(self, instance, network_info, cleanup=True):
141
141
        """Destroy VM instance."""
142
142
        self._vmops.destroy(instance, network_info)
143
143