Changeset 1187 in tailor for vcpx/repository/bzr.py


Ignore:
Timestamp:
06/25/06 16:32:56 (7 years ago)
Author:
lele@…
Hash name:
20060625143256-97f81-d947ea871fb04712bd3b31d25fbca56cd4171e07
Message:

Fix repository instantiation
Don't use the logger, since we don't have one yet. The caller
will log something for us. Moved (and tested) the bzr specific
code into the pertaining unit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/repository/bzr.py

    r1179 r1187  
    1414 
    1515__docformat__ = 'reStructuredText' 
     16 
     17 
     18from sys import version_info 
     19assert version_info >= (2,4), "Bazaar-NG backend requires Python 2.4" 
     20del version_info 
    1621 
    1722from bzrlib.osutils import normpath 
Note: See TracChangeset for help on using the changeset viewer.