/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 revspec.py

Partially fix pull.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
"""Custom revision specifier for Subversion."""
17
17
 
18
 
from bzrlib.errors import (
19
 
    BzrError,
20
 
    InvalidRevisionSpec,
21
 
    NoSuchRevision,
22
 
    )
23
 
from bzrlib.revisionspec import (
24
 
    RevisionInfo,
25
 
    RevisionSpec,
26
 
    )
 
18
from bzrlib.errors import BzrError, InvalidRevisionSpec, NoSuchRevision
 
19
from bzrlib.revisionspec import RevisionSpec, RevisionInfo
27
20
 
28
 
from bzrlib.plugins.git import (
29
 
    lazy_check_versions,
30
 
    )
 
21
from bzrlib.plugins.git import lazy_check_versions
31
22
 
32
23
class RevisionSpec_git(RevisionSpec):
33
24
    """Selects a revision using a Subversion revision number."""