From 90001876935fc3c848136a162a54e998331e9c72 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 5 Jul 2012 02:39:02 -0400 Subject: [PATCH] Fix signature for self.config.decrypt(node, *nodes). --- earwigbot/commands/geolocate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/earwigbot/commands/geolocate.py b/earwigbot/commands/geolocate.py index 589786b..78a9111 100644 --- a/earwigbot/commands/geolocate.py +++ b/earwigbot/commands/geolocate.py @@ -33,7 +33,7 @@ class Geolocate(Command): commands = ["geolocate", "locate", "geo", "ip"] def setup(self): - self.config.decrypt(self.config.commands, (self.name, "apiKey")) + self.config.decrypt(self.config.commands, self.name, "apiKey") try: self.key = self.config.commands[self.name]["apiKey"] except KeyError: