~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Aaron Bentley
  • Date: 2007-07-17 13:27:14 UTC
  • mfrom: (2624 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2631.
  • Revision ID: abentley@panoramicfeedback.com-20070717132714-tmzx9khmg9501k51
Merge from bzr.dev

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