diff options
| author | 2019-07-01 13:00:56 +0100 | |
|---|---|---|
| committer | 2019-07-01 13:00:56 +0100 | |
| commit | 5838314396fbe8fe788eb6211aae3931b1ce5aaf (patch) | |
| tree | c32e8126b8305b17a40569080e049b0d8d9cea15 /src/utils | |
| parent | don't prefix relay messages with 'relay/' (diff) | |
| parent | fixed capabilities (diff) | |
Merge pull request #77 from Jan69/master
closes #76
Diffstat (limited to 'src/utils')
| -rw-r--r-- | src/utils/irc/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/irc/__init__.py b/src/utils/irc/__init__.py index d470bdbe..b141beab 100644 --- a/src/utils/irc/__init__.py +++ b/src/utils/irc/__init__.py @@ -306,7 +306,7 @@ class Capability(object): def copy(self): return Capability(*self._caps, alias=self.alias, - depends_on=self.depends_on) + depends_on=self.depends_on[:]) def on_ack(self, callback: typing.Callable[[], None]): self._on_ack_callbacks.append(callback) |
