Changeset 3239

Show
Ignore:
Timestamp:
02/15/08 03:36:50 (10 months ago)
Author:
hvr
Message:

GitPlugin: add dummy ignore_ancestory parameter to get_changes method (fixes #2552)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gitplugin/0.11/tracext/git/git_fs.py

    r3238 r3239  
    209209                return GitChangeset(self.git, rev) 
    210210 
    211         def get_changes(self, old_path, old_rev, new_path, new_rev): 
    212                 # TODO: handle renames/copies 
     211        def get_changes(self, old_path, old_rev, new_path, new_rev, ignore_ancestry=0): 
     212                # TODO: handle renames/copies, ignore_ancestry 
    213213                if old_path != new_path: 
    214214                        raise TracError("not supported in git_fs")