diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2015-01-24 20:36:44 -0800 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2015-01-24 20:36:44 -0800 |
commit | bb67ee17bdfcaa94b3d4a88549b87b048269572a (patch) | |
tree | 4e03940b20eb443e32689bf260750edf7ec5090f | |
parent | cca6829caed96fff5ecceb9c89b4eb2942c264f5 (diff) |
Removing vestigal constructor param.
-rw-r--r-- | deployerbot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deployerbot.py b/deployerbot.py index eced411..f579e95 100644 --- a/deployerbot.py +++ b/deployerbot.py @@ -15,7 +15,7 @@ bot's nick. It will respond to the follow commands: * remove webhook for <application> """ class DeployerBot: - def __init__(self, expiry=1800): + def __init__(self): self.__name__ = "DeployerBot" self.__version__ = "0.0.1" self.deploy_pattern = re.compile(r"deploy (?:(?:the )?application )?(\S+)", re.IGNORECASE) |