finishing up some of the mount parsing. it now successfully builds a dictionary map at least. docs updated and print formatter done.

This commit is contained in:
brent s
2020-03-31 16:16:56 -04:00
parent 58accf8c7e
commit 236af1ea37
5 changed files with 189 additions and 61 deletions

View File

@@ -41,7 +41,7 @@ class PassMan(object):
return(None)
def _getMount(self):
mounts_xml = self.xml.find('.//mounts')
mounts_xml = self.cfg.xml.find('.//mounts')
self.mount = mounts.MountHandler(self.client, mounts_xml = mounts_xml)
return(None)