/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

Clean up trailing whitespace.

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
 
# Please note that imports are delayed as much as possible here since 
 
18
# Please note that imports are delayed as much as possible here since
19
19
# if DWIM revspecs are supported this module is imported by __init__.py.
20
20
 
21
21
from bzrlib.errors import (
43
43
 
44
44
    help_txt = """Selects a revision using a Git revision sha1.
45
45
    """
46
 
    
 
46
 
47
47
    prefix = 'git:'
48
48
    wants_revision_history = False
49
49