~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remotebranch.py

  • Committer: Martin Pool
  • Date: 2005-05-26 02:13:57 UTC
  • Revision ID: mbp@sourcefrog.net-20050526021357-9a56decdca0c174f
- All top-level classes inherit from object
  (Python new-style classes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
        return r
150
150
 
151
151
 
152
 
class RemoteStore:
 
152
class RemoteStore(object):
153
153
    def __init__(self, baseurl):
154
154
        self._baseurl = baseurl
155
155