~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/win32/build_release.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-12-16 01:20:58 UTC
  • mfrom: (3882.5.1 bzr.dev)
  • Revision ID: pqm@pqm.ubuntu.com-20081216012058-qt15655kpfcpfreq
(Jelmer) bzr-svn releases are now in lp:bzr-svn again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
 
107
107
 
108
108
def get_plugin_trunk_branch(plugin_name):
109
 
    if plugin_name == 'bzr-svn':
110
 
        # For some reason bzr-svn doesn't have the latest tags on its 'trunk'
111
 
        # branch, but only exist in the 0.4 releases.
112
 
        return 'lp:bzr-svn/0.4'
113
109
    return 'lp:%s' % (plugin_name,)
114
110
 
115
111