mirror of
https://codeberg.org/langfingaz/bbb-status
synced 2024-11-21 20:23:17 +01:00
minor
This commit is contained in:
parent
827f619100
commit
97f2400c41
@ -6,7 +6,9 @@ import langfingaz.util.fileUtil as fileUtil
|
|||||||
|
|
||||||
|
|
||||||
def requestMeetingData() -> str:
|
def requestMeetingData() -> str:
|
||||||
response = requests.get(getRequestUrl())
|
requestUrl = getRequestUrl()
|
||||||
|
print(">> starting request for " + requestUrl)
|
||||||
|
response = requests.get(requestUrl)
|
||||||
if not response.ok:
|
if not response.ok:
|
||||||
raise ValueError("error during request, got status code {}".format(response.status_code))
|
raise ValueError("error during request, got status code {}".format(response.status_code))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user