diff options
| author | 2019-07-01 14:41:47 +0300 | |
|---|---|---|
| committer | 2019-07-01 14:41:47 +0300 | |
| commit | b6e9713a147e0c3aee849aca1d2837f6d4ea8b28 (patch) | |
| tree | 71b9ee5d96c6ff482f6f0c98c365ec387c513d0c /src/utils | |
| parent | Add RESET char in relay lines due to weechat bug (diff) | |
| signature | ||
fixed capabilities
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) |
