/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

Fix some more tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
    def create_branch(self, name=None):
189
189
        refname = self._branch_name_to_ref(name)
190
190
        from dulwich.protocol import ZERO_SHA
191
 
        self._git.refs[refname] = ZERO_SHA
 
191
        self._git.refs[refname or "HEAD"] = ZERO_SHA
192
192
        return self.open_branch(name)
193
193
 
194
194
    def backup_bzrdir(self):