diff options
author | martin f. krafft <madduck@madduck.net> | 2008-03-21 23:36:58 +0100 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-03-21 19:17:00 -0400 |
commit | 616fcc8aefddde9e239523b3f979eb3a19a8f01f (patch) | |
tree | 845bcf32ecd74690b6a8aeab088920aa1606b530 | |
parent | 259d6e67a1e30849d526a751f847fa0649d4f81f (diff) |
Do not output xml-rpc debugging
Signed-off-by: martin f. krafft <madduck@madduck.net>
-rwxr-xr-x | plugins/pythondemo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pythondemo b/plugins/pythondemo index 8ad3d5fb9..1edbb819e 100755 --- a/plugins/pythondemo +++ b/plugins/pythondemo @@ -20,7 +20,7 @@ def debug(s): sys.stderr.write(__name__ + ':DEBUG:%s\n' % s) sys.stderr.flush() -proxy = IkiWikiProcedureProxy(__name__, debug_fn=debug) +proxy = IkiWikiProcedureProxy(__name__, debug_fn=None) def _arglist_to_dict(args): if len(args) % 2 != 0: |