launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #26310
[Merge] ~cjwatson/launchpad:py3-launchpadlib-txt into launchpad:master
Colin Watson has proposed merging ~cjwatson/launchpad:py3-launchpadlib-txt into launchpad:master.
Commit message:
Fix launchpadlib.txt for Python 3
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/398030
http.client prints the "send:" debug output using bytes.
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:py3-launchpadlib-txt into launchpad:master.
diff --git a/lib/lp/services/webservice/stories/launchpadlib.txt b/lib/lp/services/webservice/stories/launchpadlib.txt
index 70c552c..41381f4 100644
--- a/lib/lp/services/webservice/stories/launchpadlib.txt
+++ b/lib/lp/services/webservice/stories/launchpadlib.txt
@@ -107,10 +107,10 @@ Now create a Launchpad object and observe how it populates the cache.
>>> launchpad = Launchpad(
... credentials, None, None, 'http://api.launchpad.test/',
... cache=cache)
- send: 'GET /1.0/ ...accept: application/vnd.sun.wadl+xml...'
+ send: ...'GET /1.0/ ...accept: application/vnd.sun.wadl+xml...'
reply: 'HTTP/1.0 200 Ok\n'
...
- send: 'GET /1.0/ ...accept: application/json...'
+ send: ...'GET /1.0/ ...accept: application/json...'
reply: 'HTTP/1.0 200 Ok\n'
...