/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

Clean up trailing whitespace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
    def open_workingtree(self, recommend_upgrade=True):
125
125
        if not self._git.bare and self._git.has_index():
126
126
            from bzrlib.plugins.git.workingtree import GitWorkingTree
127
 
            return GitWorkingTree(self, self.open_repository(), 
 
127
            return GitWorkingTree(self, self.open_repository(),
128
128
                                                  self.open_branch())
129
129
        loc = urlutils.unescape_for_display(self.root_transport.base, 'ascii')
130
130
        raise bzr_errors.NoWorkingTree(loc)