Skip to content

Commit

Permalink
Remove f-strings to not break py36...why not.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattw-nws committed Mar 27, 2023
1 parent 6c1a613 commit 803a3f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/troute-network/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
fcompiler_type = 'intel'
else:
raise Exception("Could not identify fortran compiler!")
print(f"Fortran compiler type is: {fcompiler_type}")
print("Fortran compiler type is: {0}".format(fcompiler_type))

class build_ext_subclass( build_ext ):
def build_extensions(self):
Expand Down
2 changes: 1 addition & 1 deletion src/troute-routing/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
fcompiler_type = 'intel'
else:
raise Exception("Could not identify fortran compiler!")
print(f"Fortran compiler type is: {fcompiler_type}")
print("Fortran compiler type is: {0}".format(fcompiler_type))

class build_ext_subclass( build_ext ):
def build_extensions(self):
Expand Down

0 comments on commit 803a3f8

Please sign in to comment.