aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authormartin f. krafft <madduck@madduck.net>2008-03-15 14:51:40 +0100
committerJoey Hess <joey@kodama.kitenet.net>2008-03-15 13:16:45 -0400
commitdf85743f63267cf7fc1f74f9f28d32f66d01e51f (patch)
treec9e8c253a9b96ee67ebefc06d8a32ac6c4d373f5 /plugins
parent7893c7ff5c7c1e2df3c018b97f294028476f74e3 (diff)
downloadikiwiki-df85743f63267cf7fc1f74f9f28d32f66d01e51f.tar
ikiwiki-df85743f63267cf7fc1f74f9f28d32f66d01e51f.tar.gz
improve debug output
Signed-off-by: martin f. krafft <madduck@madduck.net> (cherry picked from commit 63c7e393692b44bfa69d8b78a936f58beadef2b2)
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/proxy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/proxy.py b/plugins/proxy.py
index cf5588b24..55c552ab2 100755
--- a/plugins/proxy.py
+++ b/plugins/proxy.py
@@ -108,7 +108,7 @@ class _IkiWikiExtPluginXMLRPCHandler(object):
def send_rpc(self, cmd, in_fd, out_fd, **kwargs):
xml = xmlrpclib.dumps(sum(kwargs.iteritems(), ()), cmd)
- self._debug_fn('sending xml to ikiwiki to call procedure %s: [%s]' % (cmd, xml))
+ self._debug_fn("calling ikiwiki procedure `%s': [%s]" % (cmd, xml))
_IkiWikiExtPluginXMLRPCHandler._write(out_fd, xml)
self._debug_fn('reading response from ikiwiki...')