From edf231e3fffd1d68bf04d29016f71c13d6a7a177 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 12 Dec 2019 10:04:36 +0530 Subject: [PATCH] Use a token for github --- setup/upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/upload.py b/setup/upload.py index 20bb07385a..adb426cfc3 100644 --- a/setup/upload.py +++ b/setup/upload.py @@ -107,7 +107,7 @@ class ReUpload(Command): # {{{ # Data {{{ def get_github_data(): - with open(os.environ['PENV'] + '/github', 'rb') as f: + with open(os.environ['PENV'] + '/github-token', 'rb') as f: un, pw = f.read().strip().split(':') return {'username': un, 'password': pw}