Add missing space in forbidden operations description.

This commit is contained in:
Julien Fontanet 2016-01-16 18:27:23 +01:00
parent f1e328d333
commit b9ea52d65f

View File

@ -1332,7 +1332,7 @@ export default class Xapi extends XapiBase {
// vm_operations: http://xapi-project.github.io/xen-api/classes/vm.html
async addForbiddenOperationToVm (vmId, operation, reason) {
await this.call('VM.add_to_blocked_operations', this.getObject(vmId).$ref, operation, `[XO]${reason}`)
await this.call('VM.add_to_blocked_operations', this.getObject(vmId).$ref, operation, `[XO] ${reason}`)
}
async removeForbiddenOperationFromVm (vmId, operation) {