Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

Commit

Permalink
Allow words to follow some common commands
Browse files Browse the repository at this point in the history
  • Loading branch information
spladug committed Jul 6, 2016
1 parent c7ace40 commit 10abc4f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions harold/plugins/deploy.py
Expand Up @@ -113,7 +113,7 @@ def status(self, irc, sender, channel):
(sender, d.who, d.id, status, d.when.strftime("%H:%M"),
d.args, d.log_path))

def hold(self, irc, sender, channel):
def hold(self, irc, sender, channel, *ignored):
if channel != self.config.channel:
return

Expand All @@ -125,7 +125,7 @@ def hold(self, irc, sender, channel):
self.current_hold = sender
self._update_topic()

def unhold(self, irc, sender, channel):
def unhold(self, irc, sender, channel, *ignored):
if channel != self.config.channel:
return

Expand All @@ -137,7 +137,7 @@ def unhold(self, irc, sender, channel):
self.current_hold = None
self._update_topic()

def acquire(self, irc, sender, channel):
def acquire(self, irc, sender, channel, *ignored):
if channel != self.config.channel:
return

Expand All @@ -153,7 +153,7 @@ def acquire(self, irc, sender, channel):
self._update_topic()
self._update_conch()

def aquire(self, irc, sender, channel):
def aquire(self, irc, sender, channel, *ignored):
if channel != self.config.channel:
return

Expand All @@ -170,7 +170,7 @@ def _update_conch(self):
new_conch = None
self.current_conch = new_conch

def release(self, irc, sender, channel):
def release(self, irc, sender, channel, *ignored):
if channel != self.config.channel:
return

Expand Down

0 comments on commit 10abc4f

Please sign in to comment.