diff --git a/packages/xen-api/src/index.js b/packages/xen-api/src/index.js index 305fdd77c..9ec471759 100644 --- a/packages/xen-api/src/index.js +++ b/packages/xen-api/src/index.js @@ -429,9 +429,9 @@ export class Xapi extends EventEmitter { _init () { const {isSecure, hostname, port, path} = this._url - const client = (isSecure ? - createSecureXmlRpcClient : - createXmlRpcClient + const client = (isSecure + ? createSecureXmlRpcClient + : createXmlRpcClient )({ hostname, port,