Skip to content

Commit

Permalink
Fixed coding style error
Browse files Browse the repository at this point in the history
  • Loading branch information
srherbener authored and climbfuji committed Oct 2, 2023
1 parent 86b5c0f commit 4a41765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion var/spack/repos/builtin/packages/bufr/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Bufr(CMakePackage):
# tar file name depends on version
def url_for_version(self, version):
url = "https://github.com/NOAA-EMC/NCEPLIBS-bufr/archive/refs/tags"
if (version >= Version("12.0.1")):
if version >= Version("12.0.1"):
url += "/v{0}.tar.gz".format(version)
else:
url += "/bufr_v{0}.tar.gz".format(version)
Expand Down

0 comments on commit 4a41765

Please sign in to comment.