Browse Source

Allow passing in a repository location to dulwich.porcelain.merge().

Jelmer Vernooij 5 years ago
parent
commit
2741be5e64
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dulwich/porcelain.py

+ 1 - 1
dulwich/porcelain.py

@@ -1633,4 +1633,4 @@ def merge_base(repo, committishs):
     with open_repo_closing(repo) as r:
         commits = [parse_commit(r, committish).id
                    for committish in committishs]
-        return find_merge_base(repo, commits)
+        return find_merge_base(r, commits)