intialize the Client stuff in FSClient

We need __utils__ in FSClient for s3:// uris.
This commit is contained in:
Daniel Wallace 2017-02-23 10:51:25 -06:00
parent 0d31201e08
commit 0820620ef8

View file

@ -1356,8 +1356,7 @@ class FSClient(RemoteClient):
the FSChan object
'''
def __init__(self, opts): # pylint: disable=W0231
self.opts = opts
self.utils = salt.loader.utils(opts)
Client.__init__(self, opts) # pylint: disable=W0233
self.channel = salt.fileserver.FSChan(opts)
self.auth = DumbAuth()