mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Merge pull request #1193 from Badiboy/master
Raise exception if no token passed
This commit is contained in:
commit
ab6d40a072
@ -68,6 +68,8 @@ def _make_request(token, method_name, method='get', params=None, files=None):
|
||||
:param files: Optional files.
|
||||
:return: The result parsed to a JSON dictionary.
|
||||
"""
|
||||
if not token:
|
||||
raise Exception('Bot token is not defined')
|
||||
if API_URL:
|
||||
request_url = API_URL.format(token, method_name)
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user