From 85af03df2585572526c2c011b9d3d631661c894a Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 19 Nov 2011 22:57:14 -0500 Subject: [PATCH] self.dest -> self.destination --- bot/tasks/afc_history.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/tasks/afc_history.py b/bot/tasks/afc_history.py index cfbcc68..2de4b7d 100644 --- a/bot/tasks/afc_history.py +++ b/bot/tasks/afc_history.py @@ -44,7 +44,7 @@ class Task(BaseTask): # Graph stuff: self.graph = cfg.get("graph", {}) - self.dest = self.graph.get("dest", "afc_history.png") + self.destination = self.graph.get("dest", "afc_history.png") # Connection data for our SQL database: kwargs = cfg.get("sql", {})