# HG changeset patch # User Marcin Kuzminski # Date 2017-05-17 14:26:03 # Node ID 33f8414ebe487bbe2bfe0a69a2ee5b96c0ca5e25 # Parent 7133c82f23af7b1f6f8c3b53635cd6100f3e8bd0 hooks: fixed function signature. diff --git a/vcsserver/hooks.py b/vcsserver/hooks.py --- a/vcsserver/hooks.py +++ b/vcsserver/hooks.py @@ -69,7 +69,7 @@ class HooksDummyClient(object): class RemoteMessageWriter(object): """Writer base class.""" - def write(message): + def write(self, message): raise NotImplementedError()