From ef9a2b41934314d795ba3abaf2e6965a130086eb Mon Sep 17 00:00:00 2001 From: tjlaboss Date: Tue, 18 Oct 2016 16:57:42 -0400 Subject: [PATCH] Fixed the placement of a right parenthesis in xsdata path --- scripts/openmc-ace-to-hdf5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/openmc-ace-to-hdf5 b/scripts/openmc-ace-to-hdf5 index dd115d175c..bfc1c1a54d 100755 --- a/scripts/openmc-ace-to-hdf5 +++ b/scripts/openmc-ace-to-hdf5 @@ -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)