diff options
| author | Simon McVittie <smcv@celebrin.pseudorandom.co.uk> | 2006-09-28 16:03:11 +0100 |
|---|---|---|
| committer | Simon McVittie <smcv@celebrin.pseudorandom.co.uk> | 2006-09-28 16:03:11 +0100 |
| commit | dd48a45dec3704ee459a418734485985e5fba205 (patch) | |
| tree | 03afa38bca2c30a4acb03567d3eed2501283bdc1 /test/cross-test-server.py | |
| parent | 3d645c9743e630d5064566a3a35d1e2c35d76cc2 (diff) | |
| download | dbus-python-dd48a45dec3704ee459a418734485985e5fba205.tar.gz | |
test/cross-test-client.py, test/cross-test-server.py: Output in the same format dbus-java does (the <> in the specification were not meant to be literal, apparently)
Diffstat (limited to 'test/cross-test-server.py')
| -rw-r--r-- | test/cross-test-server.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cross-test-server.py b/test/cross-test-server.py index 25f1508..137d551 100644 --- a/test/cross-test-server.py +++ b/test/cross-test-server.py @@ -39,7 +39,7 @@ logging.basicConfig() class VerboseSet(Set): def add(self, thing): - print '<%s> ok' % thing + print '%s ok' % thing Set.add(self, thing) @@ -272,7 +272,7 @@ class TestsImpl(dbus.service.Object): tested_things.add(INTERFACE_TESTS + '.Exit') for x in testable_things: if x not in tested_things: - print '<%s> untested' % x + print '%s untested' % x sys.stderr.write('SERVER: will quit when idle\n') gobject.idle_add(self._exit_fn) |
