Set utils property explicitly for FSClient

This commit is contained in:
Jarrod Moore 2017-02-23 22:49:00 +11:00 committed by rallytime
parent 3889006149
commit 83ec174d44

View File

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