/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 bzrlib/transport/__init__.py

  • Committer: Martin Pool
  • Date: 2008-02-06 00:41:04 UTC
  • mfrom: (3215 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3219.
  • Revision ID: mbp@sourcefrog.net-20080206004104-mxtn32habuhjq6b8
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1262
1262
class _SharedConnection(object):
1263
1263
    """A connection shared between several transports."""
1264
1264
 
1265
 
    def __init__(self, connection=None, credentials=None):
 
1265
    def __init__(self, connection=None, credentials=None, base=None):
1266
1266
        """Constructor.
1267
1267
 
1268
1268
        :param connection: An opaque object specific to each transport.
1272
1272
        """
1273
1273
        self.connection = connection
1274
1274
        self.credentials = credentials
 
1275
        self.base = base
1275
1276
 
1276
1277
 
1277
1278
class ConnectedTransport(Transport):