/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/upload/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-16 23:15:15 UTC
  • mfrom: (7180 work)
  • mto: This revision was merged to the branch mainline in revision 7183.
  • Revision ID: jelmer@jelmer.uk-20181116231515-zqd2yn6kj8lfydyp
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
# remote files...
146
146
 
147
147
 
148
 
import breezy
149
148
from ... import (
150
149
    commands,
151
150
    config,
152
151
    hooks,
153
152
    )
154
153
 
155
 
from ...hooks import install_lazy_named_hook
156
154
 
157
 
from ... import version_info
 
155
from ... import version_info  # noqa: F401
158
156
 
159
157
 
160
158
def register_option(key, member):
224
222
        'tests',
225
223
        ]
226
224
    basic_tests.addTest(loader.loadTestsFromModuleNames(
227
 
            ["%s.%s" % (__name__, tmn) for tmn in testmod_names]))
 
225
        ["%s.%s" % (__name__, tmn) for tmn in testmod_names]))
228
226
    return basic_tests