We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 779b623 commit f557ed3Copy full SHA for f557ed3
docs/FMWParser.md
@@ -42,7 +42,8 @@ To retrieve a workspace name you need to:
42
43
``` python
44
import FMEUtil.FMWParser
45
-parser = FMEUtil.FMWParser.FMWParser(self.fmwFile)
+fmwFile = r'C:\somePath\to\my\fmws\test.fmw'
46
+parser = FMEUtil.FMWParser.FMWParser(fmwFile)
47
wrkspcObj = parser.getFMEWorkspace()
48
wrkspaceName = wrkspcObj.getWorkspaceName()
49
print 'wrkspaceName', wrkspaceName
0 commit comments