~jelmer/brz/integrate-git

« back to all changes in this revision

Viewing changes to breezy/git/revspec.py

  • Committer: Jelmer Vernooij
  • Date: 2017-06-14 02:52:51 UTC
  • Revision ID: jelmer@jelmer.uk-20170614025251-nbqpse92rggwlawz
Fix tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
# Please note that imports are delayed as much as possible here since
21
21
# if DWIM revspecs are supported this module is imported by __init__.py.
22
22
 
23
 
from ... import version_info as breezy_version
24
 
from ...errors import (
 
23
from .. import version_info as breezy_version
 
24
from ..errors import (
25
25
    InvalidRevisionId,
26
26
    InvalidRevisionSpec,
27
27
    )
28
 
from ...revision import (
 
28
from ..revision import (
29
29
    NULL_REVISION,
30
30
)
31
 
from ...revisionspec import (
 
31
from ..revisionspec import (
32
32
    RevisionInfo,
33
33
    RevisionSpec,
34
34
    )