This commit is contained in:
Kovid Goyal 2017-02-06 22:18:59 +05:30
parent ebacb16f67
commit 4532194b01

View File

@ -254,7 +254,7 @@ class GitHub(Base): # {{{
def get_github_data(): def get_github_data():
with open(os.path.expanduser('~/work/env/private/github')) as f: with open(os.environ['PENV'] + '/github') as f:
un, pw = f.read().strip().split(':') un, pw = f.read().strip().split(':')
return {'username': un, 'password': pw} return {'username': un, 'password': pw}