/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: Jelmer Vernooij
  • Date: 2018-11-11 04:08:32 UTC
  • mto: (7143.16.20 even-more-cleanups)
  • mto: This revision was merged to the branch mainline in revision 7175.
  • Revision ID: jelmer@jelmer.uk-20181111040832-nsljjynzzwmznf3h
Run autopep8.

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