We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0cc646b + 8151f48 commit 1381017Copy full SHA for 1381017
README.rst
@@ -178,7 +178,7 @@ https://devdocs.line.me/en/#error-response
178
179
try:
180
line_bot_api.push_message('to', TextSendMessage(text='Hello World!'))
181
- except linebot.LineBotApiError as e:
+ except linebot.exceptions.LineBotApiError as e:
182
print(e.status_code)
183
print(e.error.message)
184
print(e.error.details)
tests/api/test_send_image_message.py
@@ -88,5 +88,6 @@ def test_reply_image_message(self):
88
}
89
)
90
91
+
92
if __name__ == '__main__':
93
unittest.main()
0 commit comments