Fixed the placement of a right parenthesis in xsdata path

This commit is contained in:
tjlaboss 2016-10-18 16:57:42 -04:00
parent c9c7ff497a
commit ef9a2b4193

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)