From e1858448d89b07e4a9c730ea09998fbe43a033ec Mon Sep 17 00:00:00 2001 From: Vladislav Glinsky Date: Thu, 26 Dec 2019 22:23:28 +0200 Subject: [PATCH] reorder text --- Extensions-–-Your-first-Bot.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Extensions-–-Your-first-Bot.md b/Extensions-–-Your-first-Bot.md index 9d074d4..aa38513 100644 --- a/Extensions-–-Your-first-Bot.md +++ b/Extensions-–-Your-first-Bot.md @@ -28,10 +28,10 @@ updater = Updater(token='TOKEN', use_context=True) ``` **Related docs:** [telegram.ext.Updater](http://python-telegram-bot.readthedocs.io/en/latest/telegram.ext.updater.html#telegram.ext.updater.Updater) -For quicker access to the `Dispatcher` used by your `Updater`, you can introduce it locally: - **Note**: The `use_context=True` is a special argument only needed for version 12 of the library. It allows for better backwards compatibility with older versions of the library, and to give users some time to upgrade. From version 13 `use_context=True` will be the default. +For quicker access to the `Dispatcher` used by your `Updater`, you can introduce it locally: + ```python dispatcher = updater.dispatcher ```