From 67026a98e1e6eab3c4158af69ef9e4d2db7985b8 Mon Sep 17 00:00:00 2001 From: Mariatta Date: Tue, 5 Sep 2017 16:33:05 -0700 Subject: [PATCH] Push to origin instead of upstream (#5) --- backport/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backport/tasks.py b/backport/tasks.py index a53539743cf9aa..2e06e5f1a9695c 100644 --- a/backport/tasks.py +++ b/backport/tasks.py @@ -28,7 +28,7 @@ def setup_cpython_repo(): def backport_task(commit_hash, branch, *, issue_number, created_by, merged_by): """Backport a commit into a branch.""" print(os.chdir("./cpython")) - cp = cherry_picker.CherryPicker('upstream', commit_hash, [branch]) + cp = cherry_picker.CherryPicker('origin', commit_hash, [branch]) try: cp.backport() except cherry_picker.BranchCheckoutException: