Release 0e9c2f2af925870ae005edce5afd48c0

This commit is contained in:
Dirk Alders 2020-12-21 01:42:06 +01:00
parent d3fbc59340
commit bbc3c6f935
3 changed files with 5954 additions and 5890 deletions

View File

@ -38,8 +38,11 @@ else:
from Queue import PriorityQueue from Queue import PriorityQueue
from Queue import Empty from Queue import Empty
logger_name = 'TASK' try:
logger = logging.getLogger(logger_name) from config import APP_NAME as ROOT_LOGGER_NAME
except ImportError:
ROOT_LOGGER_NAME = 'root'
logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__)
__DESCRIPTION__ = """The Module {\\tt %s} is designed to help with task issues like periodic tasks, delayed tasks, queues, threaded queues and crontabs. __DESCRIPTION__ = """The Module {\\tt %s} is designed to help with task issues like periodic tasks, delayed tasks, queues, threaded queues and crontabs.
For more Information read the documentation.""" % __name__.replace('_', '\_') For more Information read the documentation.""" % __name__.replace('_', '\_')

File diff suppressed because it is too large Load Diff

Binary file not shown.