Check-in [109e332311]
Overview
Comment: | Use __future__ print_function for file=sys.stderr descriptor usage. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
109e33231191e511514dd570ed99409d |
User & Date: | mario on 2015-03-29 16:41:27 |
Other Links: | manifest | tags |
Context
2015-03-30
| ||
17:40 | Use plugin meta data for about dialog. check-in: 2040a91410 user: mario tags: trunk | |
2015-03-29
| ||
16:41 | Use __future__ print_function for file=sys.stderr descriptor usage. check-in: 109e332311 user: mario tags: trunk | |
16:40 | Use absolute path for conf.share, and ensure it doesn't get overwritten from last value in settings.json. check-in: c03cbe2403 user: mario tags: trunk | |
Changes
Modified bundle/kronos.py from [6b151802f7] to [5bb84d4fc4].
︙ | ︙ | |||
39 40 41 42 43 44 45 46 47 48 49 50 51 52 | have been made to make it work on Python 2.6 (sched module changes). The version in Turbogears is based on the original stand-alone Kronos. This is open-source software, released under the MIT Software License: http://www.opensource.org/licenses/mit-license.php """ __version__="2.1" __all__ = [ "DayTaskRescheduler", "ForkedIntervalTask", "ForkedMonthdayTask", "ForkedScheduler", | > | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | have been made to make it work on Python 2.6 (sched module changes). The version in Turbogears is based on the original stand-alone Kronos. This is open-source software, released under the MIT Software License: http://www.opensource.org/licenses/mit-license.php """ from __future__ import print_function __version__="2.1" __all__ = [ "DayTaskRescheduler", "ForkedIntervalTask", "ForkedMonthdayTask", "ForkedScheduler", |
︙ | ︙ |