2016-10-18 20:00:43 +03:00
|
|
|
import time
|
2016-11-19 17:44:40 +02:00
|
|
|
import plugins.common
|
2016-10-18 20:00:43 +03:00
|
|
|
|
|
|
|
|
2016-11-19 17:44:40 +02:00
|
|
|
class PluginThread(plugins.common.PluginThreadCommon):
|
2016-11-21 12:34:32 +02:00
|
|
|
def __init__(self, section, config):
|
2016-11-19 17:44:40 +02:00
|
|
|
super(PluginThread, self).__init__(section, config)
|
2016-10-22 19:27:28 +03:00
|
|
|
self.date_format = config.get(section, 'format', fallback='%c')
|
2016-10-22 05:50:11 +03:00
|
|
|
|
2016-10-22 19:27:28 +03:00
|
|
|
def main(self):
|
|
|
|
self.status['full_text'] = time.strftime(self.date_format)
|