/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/smart/packrepository.py

  • Committer: Jelmer Vernooij
  • Date: 2017-06-04 19:17:13 UTC
  • mfrom: (0.193.10 trunk)
  • mto: This revision was merged to the branch mainline in revision 6778.
  • Revision ID: jelmer@jelmer.uk-20170604191713-hau7dfsqsl035slm
Bundle the cvs plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
 
17
from __future__ import absolute_import
 
18
 
17
19
"""Server-side pack repository related request implmentations."""
18
20
 
19
 
from bzrlib.smart.request import (
 
21
from .request import (
20
22
    FailedSmartServerResponse,
21
23
    SuccessfulSmartServerResponse,
22
24
    )
23
25
 
24
26
 
25
 
from bzrlib.smart.repository import (
 
27
from .repository import (
26
28
    SmartServerRepositoryRequest,
27
29
    )
28
30