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}