Merge pull request #742 from tjlaboss/ace-to-hdf5-bug

Fixed the placement of a right parenthesis in xsdata path
This commit is contained in:
Adam Nelson 2016-10-18 19:21:35 -04:00 committed by GitHub
commit 32b859df47

View file

@ -108,7 +108,7 @@ elif args.xsdata is not None:
for line in xsdata:
words = line.split()
if len(words) >= 9:
path = os.path.join(os.path.dirname(args.xsdata, words[8]))
path = os.path.join(os.path.dirname(args.xsdata), words[8])
if path not in ace_libraries:
ace_libraries.append(path)