Skip to content

Commit

Permalink
Comment out 'assert ut is not None' in lib/spack/spack/util/url.py - s…
Browse files Browse the repository at this point in the history
  • Loading branch information
climbfuji committed Apr 11, 2022
1 parent b629a88 commit 493faae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/spack/spack/util/url.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,8 @@ def parse_git_url(url):

def require_url_format(url):
ut = re.search(r'^(file://|http://|https://|ftp://|s3://|gs://|ssh://|git://|/)', url)
assert ut is not None
# DH 20220411 - https://github.com/spack/spack/issues/29910
#assert ut is not None


def escape_file_url(url):
Expand Down

0 comments on commit 493faae

Please sign in to comment.