Fixed a few bugs, updated to v. 1.0.3

This commit is contained in:
Mads Marquart
2017-06-26 11:37:54 +02:00
parent add06ffa7a
commit 4a8ef00442
4 changed files with 24 additions and 21 deletions

View File

@@ -17,7 +17,7 @@ with open('README.rst') as f:
readme_content = f.read().strip()
try:
requirements = [line.rstrip('\n') for line in open('fbchat.egg-info/requires.txt')]
requirements = [line.rstrip('\n') for line in open(os.path.join('fbchat.egg-info', 'requires.txt'))]
except FileNotFoundError:
requirements = [line.rstrip('\n') for line in open('requirements.txt')]