Skip to content

Commit b79a289

Browse files
Fixed bad variable in builder.py. (#857)
* Fixed bad variable in builder.py. * Roll back style tests to Python 3.9 (#858) * Roll back style tests to Python 3.10 * Update unittests.yml * Revert "Roll back style tests to Python 3.9 (#858)" (#859) This reverts commit 7ad37e9. * Remove trailing whitespace --------- Co-authored-by: hwikle-lanl <[email protected]> Co-authored-by: Hank Wikle <[email protected]>
1 parent 39ec398 commit b79a289

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/pavilion/builder.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,8 @@ def _create_build_hash(self) -> str:
252252
hash_obj.update(self._hash_file(full_path))
253253
elif full_path.is_dir():
254254
self._date_dir(full_path)
255-
hash_obj.update(self._hash_dir(full_path, exclude=CONFIG_NAMES))
255+
hash_obj.update(self._hash_dir(full_path,
256+
exclude=CONFIG_FNAMES))
256257
else:
257258
raise TestBuilderError(
258259
"Extra file '{}' must be a regular file or directory."

0 commit comments

Comments
 (0)