mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2025-02-16 18:31:45 +01:00
jobqueue: Log datetimes correctly (minor change) (#1714)
This commit is contained in:
parent
cb9af36937
commit
0df526d390
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ class JobQueue(object):
|
|||
next_t = to_float_timestamp(time_spec, reference_timestamp=previous_t)
|
||||
|
||||
# enqueue:
|
||||
self.logger.debug('Putting job %s with t=%f', job.name, time_spec)
|
||||
self.logger.debug('Putting job %s with t=%s', job.name, time_spec)
|
||||
self._queue.put((next_t, job))
|
||||
|
||||
# Wake up the loop if this job should be executed next
|
||||
|
|
Loading…
Add table
Reference in a new issue