Skip to content

Commit

Permalink
work in progress for idaholab#288
Browse files Browse the repository at this point in the history
  • Loading branch information
mmguero committed Jan 4, 2024
1 parent abd514a commit bc36146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/bin/extracted_files_http_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def do_GET(self):
SimpleHTTPRequestHandler.do_GET(self)

else:
if recursive and (not os.path.isfile(fullpath)) and (not os.path.islink(fullpath)):
if args.recursive and (not os.path.isfile(fullpath)) and (not os.path.islink(fullpath)):
for root, dirs, files in os.walk(os.path.dirname(fullpath)):
if fileBaseName in files:
fullpath = os.path.join(root, fileBaseName)
Expand Down

0 comments on commit bc36146

Please sign in to comment.