~annegentle/nova/extdoc

« back to all changes in this revision

Viewing changes to nova/virt/xenapi_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:
217
217
        """
218
218
        self._vmops.inject_file(instance, b64_path, b64_contents)
219
219
 
220
 
    def destroy(self, instance, network_info):
 
220
    def destroy(self, instance, network_info, cleanup=True):
221
221
        """Destroy VM instance"""
222
222
        self._vmops.destroy(instance, network_info)
223
223