Index: git_rebase_update.py |
diff --git a/git_rebase_update.py b/git_rebase_update.py |
index f87f43b873fba4a05cace6e1f173e74e2058930c..4b5c73757aedfb3895f2a09ff168cba27b0d64bd 100755 |
--- a/git_rebase_update.py |
+++ b/git_rebase_update.py |
@@ -27,7 +27,7 @@ def find_return_branch(): |
This value may persist across multiple invocations of rebase-update, if |
rebase-update runs into a conflict mid-way. |
""" |
- return_branch = git.config(STARTING_BRANCH_KEY) |
+ return_branch = git.get_config(STARTING_BRANCH_KEY) |
if not return_branch: |
return_branch = git.current_branch() |
if return_branch != 'HEAD': |