while implementing telegram bot when I give /start command in my telegram then it shows a huge error. I am sharing my code file
https://drive.google.com/file/d/1Zxt-9XW5eOCoJ-J2u72zhnLpDJRR8vPO/view?usp=sharing
while implementing telegram bot when I give /start command in my telegram then it shows a huge error. I am sharing my code file
https://drive.google.com/file/d/1Zxt-9XW5eOCoJ-J2u72zhnLpDJRR8vPO/view?usp=sharing
Hey @kartik321, can you please show me the error ? I need to look at the error to be able to help ! 
I hope this is clear ! 
Happy Learning ! 
after giving /start command to my bot it gives the error
2020-10-23 11:49:59,960 - apscheduler.scheduler - INFO - Scheduler started
2020-10-23 11:50:01,720 - main - INFO - started polling…
— Logging error —
Traceback (most recent call last):
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\site-packages\telegram\ext\dispatcher.py”,
line 425, in process_update
handler.handle_update(update, self, check, context)
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\site-packages\telegram\ext\handler.py”, line 145, in handle_update
return self.callback(update, context)
File “c:\Users\dell\Desktop\RockBot\telygram_bot.py”, line 11, in start
bot.send_message(chat_id=update.message.chat_id,text=reply)
AttributeError: ‘Update’ object has no attribute ‘send_message’
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\logging_init_.py”, line 1025, in emit
msg = self.format(record)
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\logging_init_.py”, line 869, in format
return fmt.format(record)
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\logging_init_.py”, line 608, in format
record.message = record.getMessage()
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\logging_init_.py”, line 369, in getMessage
msg = msg % self.args
TypeError: not all arguments converted during string formatting
Call stack:
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\threading.py”, line 890, in _bootstrap
self._bootstrap_inner()
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\threading.py”, line 926, in _bootstrap_inner
self.run()
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\threading.py”, line 870, in run
self._target(*self._args, **self._kwargs)
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\site-packages\telegram\ext\updater.py”, line 225, in _thread_wrapper
target(*args, **kwargs)
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\site-packages\telegram\ext\dispatcher.py”,
line 366, in start
self.process_update(update)
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\site-packages\telegram\ext\dispatcher.py”,
line 441, in process_update
self.dispatch_error(update, e)
File “C:\Users\dell\AppData\Local\Programs\Python\Python37\lib\site-packages\telegram\ext\dispatcher.py”,
line 638, in dispatch_error
callback(update, context)
File “c:\Users\dell\Desktop\RockBot\telygram_bot.py”, line 26, in error
logger.error(“some update causes error !”,update)
Message: ‘some update causes error !’
Arguments: (<telegram.ext.callbackcontext.CallbackContext object at 0x000001DA2A7D6B48>,)
Hey @kartik321, please make sure you have written the same code as taught in the video. Also please make sure that there is no typing error while you are writing the code. I can see a few mistakes in code. It would be great if you could recheck the code once by watching the video again.
I hope this helps ! 
Happy Learning ! 
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.
there is two typing mistake only in echo sticker and the error function apart I correct it and run it again it has not resolved the problem now could you please tell me regarding the others?