diff --git a/docs/source/getting_started/QuickInstallation.rst b/docs/source/getting_started/QuickInstallation.rst index 1a76d512..26b85d7a 100644 --- a/docs/source/getting_started/QuickInstallation.rst +++ b/docs/source/getting_started/QuickInstallation.rst @@ -11,12 +11,6 @@ The most straightforward and recommended way to install or upgrade Pyrogram is b Pyrogram only works on Python 3.3 or higher; if your **pip** points to Python 2.x use **pip3** instead. - Also, if you are getting an error while installing or importing the library, please update setuptools and try again. - - .. code-block:: bash - - $ pip install --upgrade setuptools - Bleeding Edge ------------- @@ -44,4 +38,4 @@ If no errors show up you are good to go. >>> import pyrogram >>> pyrogram.__version__ - '0.4.0' + '0.4.2' diff --git a/docs/source/resources/ErrorHandling.rst b/docs/source/resources/ErrorHandling.rst index 74a9091a..71a3b7a7 100644 --- a/docs/source/resources/ErrorHandling.rst +++ b/docs/source/resources/ErrorHandling.rst @@ -29,8 +29,7 @@ Examples ) try: - # Something - pass + ... except BadRequest: pass except Flood: @@ -53,8 +52,7 @@ can try again. The value is always stored in the ``x`` field of the returned exc from pyrogram.api.errors import FloodWait try: - # something - pass + ... except FloodWait as e: print(e.x)