Merge pull request #39609 from gtmanfred/2016.11

intialize the Client stuff in FSClient
This commit is contained in:
Mike Place 2017-02-24 11:50:54 -07:00 committed by GitHub
commit 0bc6027e68

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()