Update api.rst to show error message
authorfefzero <fef@fefnet.com>
Thu, 8 Feb 2018 21:26:35 +0000 (14:26 -0700)
committerGitHub <noreply@github.com>
Thu, 8 Feb 2018 21:26:35 +0000 (14:26 -0700)
Old documentation incorrectly shows TweepError.message instead of TweepError.response.

docs/api.rst

index ce9d37020a5dac0e4096cb5b77d9383bb1451b16..843ff15c9555b458d38bd2e5079e861c88681fd6 100644 (file)
@@ -803,7 +803,7 @@ example, ``tweepy.error.TweepError`` is available as ``tweepy.TweepError``.
    When a ``TweepError`` is raised due to an error Twitter responded with,
    the error code (`as described in the API documentation
    <https://dev.twitter.com/overview/api/response-codes>`_) can be accessed
-   at ``TweepError.message[0]['code']``. Note, however, that ``TweepError``\ s
+   at ``TweepError.response.text``. Note, however, that ``TweepError``\ s
    also may be raised with other things as message (for example plain
    error reason strings).