diff options
| author | 2019-10-12 18:30:22 +0200 | |
|---|---|---|
| committer | 2019-10-12 18:30:22 +0200 | |
| commit | c94327b58b99bc1d4380f026f8e592efd265b357 (patch) | |
| tree | b0327c0c7274b9aee4e0d8605ef4fe896902f852 | |
| parent | Adjust line splitpoints to word boundaries (diff) | |
| signature | ||
Remove @staticmethod
| -rw-r--r-- | modules/commands/outs.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/commands/outs.py b/modules/commands/outs.py index a1733d18..c81883ab 100644 --- a/modules/commands/outs.py +++ b/modules/commands/outs.py @@ -64,8 +64,7 @@ class Out(object): sent_line = self.server.send(line) - @staticmethod - def _adjust_to_word_boundaries(left, right): + def _adjust_to_word_boundaries(self, left, right): if right[0] == WORD_BOUNDARY: return left, right |
