summaryrefslogtreecommitdiff
path: root/tests/api_tests.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/api_tests.txt')
-rw-r--r--tests/api_tests.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/api_tests.txt b/tests/api_tests.txt
index c2e63b24..65443e09 100644
--- a/tests/api_tests.txt
+++ b/tests/api_tests.txt
@@ -219,7 +219,7 @@ distribution is added to a working set. The callback is immediately invoked
once for each existing distribution in the working set, and then is called
again for new distributions added thereafter::
- >>> def added(dist): print("Added", dist)
+ >>> def added(dist): print("Added %s" % dist)
>>> ws.subscribe(added)
Added Bar 0.9
>>> foo12 = Distribution(project_name="Foo", version="1.2", location="f12")