Skip to content
This repository was archived by the owner on Jan 18, 2023. It is now read-only.

Commit b04638c

Browse files
authored
Merge pull request #3 from FirstStreet/bugfix
- Fix bug with endpoint not pointing at the api endpoint
2 parents 502ac5b + 263c7eb commit b04638c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

firststreet/http_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __init__(self, api_key, version=None):
3030
version = DEFAULT_SUMMARY_VERSION
3131

3232
self.api_key = api_key
33-
self.options = {'url': "https://astg.firststreet.org",
33+
self.options = {'url': "https://api.firststreet.org",
3434
'headers': {
3535
'Content-Encoding': 'gzip',
3636
'Content-Type': 'text/html',

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name='fsf-api-access_python',
14-
version='1.1.1',
14+
version='1.1.2',
1515
description='A Python API Access Client for the First Street Foundation API',
1616
url='https://github.com/FirstStreet/fsf_api_access_python',
1717
project_urls={

0 commit comments

Comments
 (0)