summaryrefslogtreecommitdiffstats
path: root/.ci/scripts/merge/apply-patches-by-label-private.py
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-10-01 16:56:50 +0200
committerGitHub <noreply@github.com>2019-10-01 16:56:50 +0200
commit80d6abc08b742aeff719b838f46085ad6e716fca (patch)
tree2f6c5cb12b610610662c349d9448f9c7796850c5 /.ci/scripts/merge/apply-patches-by-label-private.py
parentMerge pull request #2923 from yuzu-emu/revert-2574-dynarmic-jit-nullptr (diff)
parentci: Correct arguments for mergebot script (diff)
downloadyuzu-80d6abc08b742aeff719b838f46085ad6e716fca.tar
yuzu-80d6abc08b742aeff719b838f46085ad6e716fca.tar.gz
yuzu-80d6abc08b742aeff719b838f46085ad6e716fca.tar.bz2
yuzu-80d6abc08b742aeff719b838f46085ad6e716fca.tar.lz
yuzu-80d6abc08b742aeff719b838f46085ad6e716fca.tar.xz
yuzu-80d6abc08b742aeff719b838f46085ad6e716fca.tar.zst
yuzu-80d6abc08b742aeff719b838f46085ad6e716fca.zip
Diffstat (limited to '.ci/scripts/merge/apply-patches-by-label-private.py')
-rw-r--r--.ci/scripts/merge/apply-patches-by-label-private.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/scripts/merge/apply-patches-by-label-private.py b/.ci/scripts/merge/apply-patches-by-label-private.py
index 11ec60010..6e3cb995e 100644
--- a/.ci/scripts/merge/apply-patches-by-label-private.py
+++ b/.ci/scripts/merge/apply-patches-by-label-private.py
@@ -5,7 +5,7 @@ import requests, sys, json, urllib3.request, shutil, subprocess, os, traceback
org = os.getenv("PrivateMergeOrg".upper(), "yuzu-emu")
repo = os.getenv("PrivateMergeRepo".upper(), "yuzu-private")
-tagline = os.getenv("MergeTaglinePrivate".upper(), "")
+tagline = sys.argv[3]
user = sys.argv[1]
http = urllib3.PoolManager()