/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

  • Committer: Jelmer Vernooij
  • Date: 2009-03-28 22:27:07 UTC
  • mto: (0.200.305 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20090328222707-n0y980ntev40xqd2
Fix blob lookup.

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 BzrError, InvalidRevisionSpec, NoSuchRevision
19
 
from bzrlib.revisionspec import RevisionSpec, RevisionInfo
 
18
from bzrlib.errors import (
 
19
    BzrError,
 
20
    InvalidRevisionSpec,
 
21
    NoSuchRevision,
 
22
    )
 
23
from bzrlib.revisionspec import (
 
24
    RevisionInfo,
 
25
    RevisionSpec,
 
26
    )
20
27
 
21
 
from bzrlib.plugins.git import lazy_check_versions
 
28
from bzrlib.plugins.git import (
 
29
    lazy_check_versions,
 
30
    )
22
31
 
23
32
class RevisionSpec_git(RevisionSpec):
24
33
    """Selects a revision using a Subversion revision number."""