/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 breezy/git/workingtree.py

Fix various Git issues: allow_collaboration for GitLab, gopkg.in access, error reporting.

Merged from https://code.launchpad.net/~jelmer/brz/git-fixes/+merge/381193

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
            index_path = os.path.join(self.basedir, relpath.decode('utf-8'), '.git', 'index')
128
128
        else:
129
129
            index_path = self.control_transport.local_abspath(
130
 
                posixpath.join('modules', info[1], 'index'))
 
130
                posixpath.join('modules', info[1].decode('utf-8'), 'index'))
131
131
        return Index(index_path)
132
132
 
133
133
    def lock_read(self):