/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 dir.py

Special-case NULL_REVISION when looking for Git shas.

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
    def is_control_filename(self, filename):
126
126
        return filename == '.git' or filename.startswith('.git/')
127
127
 
128
 
    def get_branch_transport(self, branch_format, name):
 
128
    def get_branch_transport(self, branch_format, name=None):
129
129
        if branch_format is None:
130
130
            return self.transport
131
131
        if isinstance(branch_format, LocalGitBzrDirFormat):