Skip to content

Commit

Permalink
Fix issue where case was mistakenly making absolute paths relative.
Browse files Browse the repository at this point in the history
Closes #913

Though should have a test.
  • Loading branch information
ntouran committed Oct 1, 2022
1 parent 6557412 commit 57a1959
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion armi/cases/case.py
Expand Up @@ -889,7 +889,8 @@ def copyInterfaceInputs(
try:
if path.is_absolute() and path.exists() and path.is_file():
# Path is absolute, no settings modification or filecopy needed
pass
newFiles.append(path)
continue
except OSError:
pass
# Attempt to construct an absolute file path
Expand Down

0 comments on commit 57a1959

Please sign in to comment.