diff options
author | Rob Austein <sra@hactrn.net> | 2015-07-21 14:05:44 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-07-21 14:05:44 +0000 |
commit | d9bd71463fc2d47503c3300b3a207a7b8124d8b6 (patch) | |
tree | 9031d4234c008fbc5ff51fe8f3d4ac4f3b57b623 /potpourri/rrdp-fetch.py | |
parent | 6730c76fbf4c698ff5cdc730df424701113ef165 (diff) |
Start catching up on six months worth of little changes in RRDP.
svn path=/branches/tk705/; revision=6081
Diffstat (limited to 'potpourri/rrdp-fetch.py')
-rwxr-xr-x | potpourri/rrdp-fetch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/potpourri/rrdp-fetch.py b/potpourri/rrdp-fetch.py index aa5b762b..469c0c9f 100755 --- a/potpourri/rrdp-fetch.py +++ b/potpourri/rrdp-fetch.py @@ -33,7 +33,7 @@ class BadHash(Exception): def fetch(elt): uri = elt.get("uri") - hash = elt.get("hash") + hash = elt.get("hash").lower() print "Fetching", uri text = urlopen(uri).read() |