Skip to content

Commit

Permalink
Undo buggy f string
Browse files Browse the repository at this point in the history
  • Loading branch information
kkauder committed Jun 25, 2024
1 parent 6a4c3e4 commit e6caba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/hepmcmerger/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ class Hepmcmerger(CMakePackage):
def cmake_args(self):
args = []
args.append(
f"-DCMAKE_CXX_STANDARD={self.spec["root"].variants["cxxstd"].value}"
"-DCMAKE_CXX_STANDARD=%s" % self.spec["root"].variants["cxxstd"].value
)
return args

0 comments on commit e6caba6

Please sign in to comment.