mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-25 08:37:07 +01:00
Merge branch 'master' into jobqueue
This commit is contained in:
commit
6f76bfc2de
1 changed files with 1 additions and 2 deletions
|
@ -25,7 +25,6 @@ from functools import wraps
|
|||
from inspect import getargspec
|
||||
from threading import Thread, BoundedSemaphore, Lock
|
||||
from re import match
|
||||
from traceback import print_exc
|
||||
|
||||
from telegram import (TelegramError, Update, NullHandler)
|
||||
|
||||
|
@ -188,7 +187,7 @@ class Dispatcher:
|
|||
|
||||
# All other errors should not stop the thread, just print them
|
||||
except:
|
||||
print_exc()
|
||||
self.logger.exception()
|
||||
else:
|
||||
self.__lock.release()
|
||||
self.logger.info('Dispatcher thread stopped')
|
||||
|
|
Loading…
Reference in a new issue