You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
582 B
Python
19 lines
582 B
Python
from __future__ import division, print_function, unicode_literals
|
|
|
|
from datetime import datetime
|
|
from cps.services.worker import CalibreTask, STAT_FINISH_SUCCESS
|
|
|
|
class TaskUpload(CalibreTask):
|
|
def __init__(self, taskMessage):
|
|
super().__init__(taskMessage)
|
|
self.start_time = self.end_time = datetime.now()
|
|
self.stat = STAT_FINISH_SUCCESS
|
|
|
|
def run(self, worker_thread):
|
|
"""Upload task doesn't have anything to do, it's simply a way to add information to the task list"""
|
|
pass
|
|
|
|
@property
|
|
def name(self):
|
|
return "Upload"
|