summaryrefslogtreecommitdiff
path: root/apscheduler
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2014-05-26 07:46:27 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2014-05-26 07:46:27 +0300
commit03f9f9dfe2186730072b263aeb08cc7e07df7689 (patch)
tree64424d061a282855c62011dfe4e5a909516b2a55 /apscheduler
parent1f2e7daa3686c632ee627e09044b6c2a073607bd (diff)
downloadapscheduler-03f9f9dfe2186730072b263aeb08cc7e07df7689.tar.gz
Renamed alias -> jobstore_alias
Diffstat (limited to 'apscheduler')
-rw-r--r--apscheduler/events.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/apscheduler/events.py b/apscheduler/events.py
index 6463acd..b177f07 100644
--- a/apscheduler/events.py
+++ b/apscheduler/events.py
@@ -38,13 +38,13 @@ class JobStoreEvent(SchedulerEvent):
"""
An event that concerns job stores.
- :ivar alias: the alias of the job store involved
+ :ivar jobstore_alias: the alias of the job store involved
:ivar job_id: identifier of the new job if a job was added
"""
- def __init__(self, code, alias, job_id=None):
+ def __init__(self, code, jobstore_alias, job_id=None):
super(JobStoreEvent, self).__init__(code)
- self.alias = alias
+ self.jobstore_alias = jobstore_alias
if job_id:
self.job_id = job_id