1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

fix: Return requirements after read.

This commit is contained in:
Sharlatan Hellseher 2024-11-07 09:30:28 +00:00
parent 7b819944c5
commit 5304f0b289
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5

View File

@ -62,6 +62,7 @@ def generate_git_hash_py(pkg, filename='git_hash.py'):
def load_requirements(filename):
with open(filename, 'rt') as fh:
requirements = fh.read().rstrip().split('\n')
return requirements
def get_package_data():