From b9ea52d65f71e3f888028fd9100f77db5c7088c7 Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Sat, 16 Jan 2016 18:27:23 +0100 Subject: [PATCH] Add missing space in forbidden operations description. --- src/xapi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xapi.js b/src/xapi.js index 9278b6be1..7a692f033 100644 --- a/src/xapi.js +++ b/src/xapi.js @@ -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) {