Skip to content

Commit 5ac549e

Browse files
committed
MAINT: fix gama URL
1 parent 95c9216 commit 5ac549e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

astroquery/gama/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class GAMAClass(BaseQuery):
1515
TODO: document
1616
"""
1717

18-
request_url = 'http://www.gama-survey.org/dr3/query/'
18+
request_url = 'https://www.gama-survey.org/dr3/query/'
1919
timeout = 60
2020

2121
def query_sql_async(self, *args, **kwargs):

astroquery/gama/tests/test_gama_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from ... import gama
55

66
SQL_QUERY = "SELECT * FROM SpecAll LIMIT 5"
7-
GAMA_URL = "http://www.gama-survey.org/"
7+
GAMA_URL = "https://www.gama-survey.org/"
88

99

1010
@pytest.mark.remote_data

0 commit comments

Comments
 (0)