~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/merge.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:
58
58
        """Handle the case when the target file or dir exists"""
59
59
        self.add_suffix(target, ".moved")
60
60
            
61
 
class SourceFile:
 
61
class SourceFile(object):
62
62
    def __init__(self, path, id, present=None, isdir=None):
63
63
        self.path = path
64
64
        self.id = id