Skip to content

Commit

Permalink
Updating error message, GEOS name
Browse files Browse the repository at this point in the history
  • Loading branch information
cssherman committed Mar 12, 2024
1 parent 64ce2a9 commit adadf82
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Python Tools
Python Tools Setup
---------------------------------

The preferred method to setup the GEOSX python tools is to run the following command in the build directory:
The preferred method to setup the GEOS python tools is to run the following command in the build directory:

.. code-block:: bash
Expand All @@ -24,7 +24,7 @@ The ats setup command also sets up the python tools:
These will attempt to install the required packages into the python distribution indicated via the `Python3_EXECUTABLE` cmake variable (also used by pygeosx).
If any package dependencies are missing, then the install script will attempt to fetch them from the internet using pip.
After installation, these packages will be available for import within the associated python distribution, and a set of console scripts will be available within the GEOSX build bin directory.
After installation, these packages will be available for import within the associated python distribution, and a set of console scripts will be available within the GEOS build bin directory.


.. note::
Expand Down
5 changes: 4 additions & 1 deletion geos_ats_package/geos_ats/helpers/restart_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,10 @@ def filesDiffer( self ):
self.compareGroups( file, base_file )

else:
self.output.write( f"\nRank {rank} Failed to load target and/or baseline files \n" )
if file is None:
self.output.write( f"\nRank {rank} failed to load target file: {self.file_path}\n" )
if base_file is None:
self.output.write( f"\nRank {rank} failed to load baseline file: {self.baseline_path}\n" )
self.different = True

return self.different
Expand Down

0 comments on commit adadf82

Please sign in to comment.