~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Martin
  • Date: 2010-04-02 19:12:58 UTC
  • mto: (5177.1.1 integration2)
  • mto: This revision was merged to the branch mainline in revision 5179.
  • Revision ID: gzlist@googlemail.com-20100402191258-xrwedy2ffe0q4t7x
Permit bzrlib to run under python -OO by explictly assigning to __doc__ for user-visible docstrings

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
 
54
54
 
55
55
class cmd_register_branch(Command):
56
 
    """Register a branch with launchpad.net.
 
56
    __doc__ = """Register a branch with launchpad.net.
57
57
 
58
58
    This command lists a bzr branch in the directory of branches on
59
59
    launchpad.net.  Registration allows the branch to be associated with
161
161
 
162
162
 
163
163
class cmd_launchpad_open(Command):
164
 
    """Open a Launchpad branch page in your web browser."""
 
164
    __doc__ = """Open a Launchpad branch page in your web browser."""
165
165
 
166
166
    aliases = ['lp-open']
167
167
    takes_options = [
211
211
 
212
212
 
213
213
class cmd_launchpad_login(Command):
214
 
    """Show or set the Launchpad user ID.
 
214
    __doc__ = """Show or set the Launchpad user ID.
215
215
 
216
216
    When communicating with Launchpad, some commands need to know your
217
217
    Launchpad user ID.  This command can be used to set or show the
267
267
 
268
268
# XXX: cmd_launchpad_mirror is untested
269
269
class cmd_launchpad_mirror(Command):
270
 
    """Ask Launchpad to mirror a branch now."""
 
270
    __doc__ = """Ask Launchpad to mirror a branch now."""
271
271
 
272
272
    aliases = ['lp-mirror']
273
273
    takes_args = ['location?']
286
286
 
287
287
 
288
288
class cmd_lp_propose_merge(Command):
289
 
    """Propose merging a branch on Launchpad.
 
289
    __doc__ = """Propose merging a branch on Launchpad.
290
290
 
291
291
    This will open your usual editor to provide the initial comment.  When it
292
292
    has created the proposal, it will open it in your default web browser.