Skip to content

Commit

Permalink
Use HTTP instead of HTTPS
Browse files Browse the repository at this point in the history
to resolve

```
urllib.error.URLError:
<urlopen error [SSL: CERTIFICATE_VERIFY_FAILED]
certificate verify failed (_ssl.c:600)>
```
  • Loading branch information
chris48s committed Mar 28, 2017
1 parent 886ddfa commit 289f5f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
@@ -1,6 +1,6 @@
from dc_base_scrapers.ckan_scraper import CkanScraper

base_url = 'https://open.barnet.gov.uk/api/3/action/package_show?id='
base_url = 'http://open.barnet.gov.uk/api/3/action/package_show?id='

stations_info = {
'dataset': 'polling-stations-in-barnet',
Expand Down

0 comments on commit 289f5f1

Please sign in to comment.