Skip to content

Commit f21ddfb

Browse files
authored
No need to warn when falling back to other URL
1 parent 54510c5 commit f21ddfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytest_mpl/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def _download_file(baseline, filename):
6262
u = urlopen(base_url + filename)
6363
content = u.read()
6464
except Exception as e:
65-
warnings.warn('Downloading {0} failed: {1}'.format(base_url + filename, e))
65+
pass
6666
else:
6767
break
6868
else:

0 commit comments

Comments
 (0)