Ensure no spaces around fosshub API key

This commit is contained in:
Kovid Goyal 2018-03-09 16:41:00 +05:30
parent 73eed3f258
commit 2beeb537b4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -115,7 +115,7 @@ def get_sourceforge_data():
def get_fosshub_data():
with open(os.environ['PENV'] + '/fosshub', 'rb') as f:
return f.read().decode('utf-8')
return f.read().decode('utf-8').strip()
def send_data(loc):