Fix canonical URL for the Launchpad backend, as used in the
authorJelmer Vernooij <jelmer@samba.org>
Tue, 24 Jun 2008 11:38:35 +0000 (13:38 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Tue, 24 Jun 2008 11:38:35 +0000 (13:38 +0200)
merged-upstream tags.

remote/launchpad.py

index b4cff48b9df34b25beed8886681e8cf1040e5d5c..7869f0242d1884ec1a2525aa40704bc802870f82 100644 (file)
@@ -65,7 +65,7 @@ class LaunchpadData:
 class RemoteLaunchpad(RemoteBts):
     def __init__(self, cnf):
         bugre  = r"^%(uri)s/(?:.*/)?+bug/([0-9]+)$"
-        urifmt = "%(uri)s/+bug/%(id)s"
+        urifmt = "%(uri)s/bugs/%(id)s"
         RemoteBts.__init__(self, cnf, bugre, urifmt, LaunchpadData)
 
     def isClosing(self, status, resolution):