~ubuntu-branches/ubuntu/quantal/lptools/quantal

« back to all changes in this revision

Viewing changes to lptools/launchpad.py

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij, Robert Collins, Jelmer Vernooij
  • Date: 2011-09-01 22:47:11 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20110901224711-05u7hwne9anexqq9
Tags: 0.0.1~bzr28-1
[ Robert Collins ]
* Control tweaks.

[ Jelmer Vernooij ]
* New upstream snapshot.
 + Imports a few tools from ubuntu-dev-tools. Breaks/Replaces added.
* Add myself to Uploaders.
* Bump standards version to 3.9.2 (no changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Author: Robert Collins <robert.collins@canonical.com>
 
2
#
 
3
# Copyright 2010 Canonical Ltd.
 
4
#
 
5
# This program is free software: you can redistribute it and/or modify it
 
6
# under the terms of the GNU General Public License version 3, as published
 
7
# by the Free Software Foundation.
 
8
#
 
9
# This program is distributed in the hope that it will be useful, but
 
10
# WITHOUT ANY WARRANTY; without even the implied warranties of
 
11
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
12
# PURPOSE.  See the GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License along
 
15
# with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 
 
17
__all__ = [
 
18
    'Launchpad',
 
19
    ]
 
20
 
 
21
"""Wrapper class for launchpadlib with tweaks."""
 
22
 
 
23
from launchpadlib.launchpad import Launchpad as UpstreamLaunchpad
 
24
 
 
25
class Launchpad(UpstreamLaunchpad):
 
26
    """Launchpad object with bugfixes."""
 
27
 
 
28
    def load(self, url_string):
 
29
        """Load an object.
 
30
        
 
31
        Extended to support url_string being a relative url.
 
32
 
 
33
        Needed until bug 524775 is fixed.
 
34
        """
 
35
        if not url_string.startswith('https:'):
 
36
            return UpstreamLaunchpad.load(self, str(self._root_uri) + url_string)
 
37
        else:
 
38
            return UpstreamLaunchpad.load(self, url_string)