/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/transport/nosmart.py

  • Committer: Jelmer Vernooij
  • Date: 2020-03-22 01:35:14 UTC
  • mfrom: (7490.7.6 work)
  • mto: This revision was merged to the branch mainline in revision 7499.
  • Revision ID: jelmer@jelmer.uk-20200322013514-7vw1ntwho04rcuj3
merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
to never have a smart medium.
22
22
"""
23
23
 
24
 
from __future__ import absolute_import
25
 
 
26
24
from .. import errors
27
25
from ..transport import decorator
28
26
 
42
40
    """Return the permutations to be used in testing."""
43
41
    from ..tests import test_server
44
42
    return [(NoSmartTransportDecorator, test_server.NoSmartTransportServer)]
45