/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 breezy/plugins/bash_completion/__init__.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-16 18:59:44 UTC
  • mfrom: (7143.15.15 more-cleanups)
  • Revision ID: breezy.the.bot@gmail.com-20181116185944-biefv1sub37qfybm
Sprinkle some PEP8iness.

Merged from https://code.launchpad.net/~jelmer/brz/more-cleanups/+merge/358611

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
 
28
28
bzr_plugin_name = 'bash_completion'
29
 
bzr_commands = [ 'bash-completion' ]
 
29
bzr_commands = ['bash-completion']
30
30
 
31
31
commands.plugin_cmds.register_lazy('cmd_bash_completion', [],
32
32
                                   'breezy.plugins.bash_completion.bashcomp')
37
37
        'tests',
38
38
        ]
39
39
    basic_tests.addTest(loader.loadTestsFromModuleNames(
40
 
            ["%s.%s" % (__name__, tmn) for tmn in testmod_names]))
 
40
        ["%s.%s" % (__name__, tmn) for tmn in testmod_names]))
41
41
    return basic_tests