summaryrefslogtreecommitdiff
path: root/apscheduler/executors/twisted.py
diff options
context:
space:
mode:
Diffstat (limited to 'apscheduler/executors/twisted.py')
-rw-r--r--apscheduler/executors/twisted.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/apscheduler/executors/twisted.py b/apscheduler/executors/twisted.py
index 03a212a..a0b1570 100644
--- a/apscheduler/executors/twisted.py
+++ b/apscheduler/executors/twisted.py
@@ -4,7 +4,11 @@ from apscheduler.executors.base import BaseExecutor, run_job
class TwistedExecutor(BaseExecutor):
- """Runs jobs in the reactor's thread pool."""
+ """
+ Runs jobs in the reactor's thread pool.
+
+ Plugin alias: ``twisted``
+ """
def start(self, scheduler, alias):
super(TwistedExecutor, self).start(scheduler, alias)