/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

More formatting fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
 
"""An adapter between a Git control dir and a Bazaar BzrDir"""
 
17
"""An adapter between a Git control dir and a Bazaar BzrDir."""
18
18
 
19
19
import os
20
20
 
111
111
    def open_branch(self, ignored=None):
112
112
        """'create' a branch for this dir."""
113
113
        repo = self.open_repository()
114
 
        return branch.LocalGitBranch(self, repo, "HEAD", repo._git.head(), self._lockfiles)
 
114
        return branch.LocalGitBranch(self, repo, "HEAD", repo._git.head(),
 
115
            self._lockfiles)
115
116
 
116
117
    def open_repository(self, shared=False):
117
118
        """'open' a repository for this dir."""