commit | 91ebeecc928a9362f5e63595e4191f57d646832e | [log] [tgz] |
---|---|---|
author | Mihai Maruseac <mihaimaruseac@google.com> | Tue Jan 29 17:07:38 2019 -0800 |
committer | TensorFlower Gardener <gardener@tensorflow.org> | Tue Jan 29 17:16:07 2019 -0800 |
tree | d8e51f55219f7b16f73239cc53ab2c3c8d1b7695 | |
parent | fca8f722cb3f92eb36aee009c5016dd679ac0521 [diff] [blame] |
Proper string format on ValueError when MPI library is not found. PiperOrigin-RevId: 231503050
diff --git a/configure.py b/configure.py index adc9ef9..8dcd318 100644 --- a/configure.py +++ b/configure.py
@@ -1482,7 +1482,7 @@ else: raise ValueError( 'Cannot find the MPI library file in %s/lib or %s/lib64 or %s/lib32' % - mpi_home, mpi_home, mpi_home) + (mpi_home, mpi_home, mpi_home)) def set_system_libs_flag(environ_cp):