/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/__init__.py

  • Committer: Martin Pool
  • Date: 2007-08-20 05:53:39 UTC
  • mfrom: (2727 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2730.
  • Revision ID: mbp@sourcefrog.net-20070820055339-uzei7f7i7jo6tugg
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
                --product fooproduct
51
51
    """
52
52
    takes_args = ['branch_url']
53
 
    takes_options = \
54
 
        [Option('product', 
55
 
                'launchpad product short name to associate with the branch',
 
53
    takes_options = [
 
54
         Option('product',
 
55
                'Launchpad product short name to associate with the branch.',
56
56
                unicode),
57
57
         Option('branch-name',
58
 
                'short name for the branch; '
59
 
                'by default taken from the last component of the url',
 
58
                'Short name for the branch; '
 
59
                'by default taken from the last component of the url.',
60
60
                unicode),
61
61
         Option('branch-title',
62
 
                'one-sentence description of the branch',
 
62
                'One-sentence description of the branch.',
63
63
                unicode),
64
64
         Option('branch-description',
65
 
                'longer description of the purpose or contents of the branch',
 
65
                'Longer description of the purpose or contents of the branch.',
66
66
                unicode),
67
 
         Option('author', 
68
 
                'email of the branch\'s author, if not yourself',
 
67
         Option('author',
 
68
                "Branch author's email address, if not yourself.",
69
69
                unicode),
70
70
         Option('link-bug',
71
 
                'the bug this branch fixes',
 
71
                'The bug this branch fixes.',
72
72
                int),
73
73
         Option('dry-run',
74
 
                'prepare the request but don\'t actually send it')
 
74
                'Prepare the request but don\'t actually send it.')
75
75
        ]
76
76
 
77
77