diff options
| author | Rapptz <[email protected]> | 2015-08-23 04:39:58 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2015-08-23 04:39:58 -0400 |
| commit | 9b9983422185b44eabc491064508bdbb1fa83929 (patch) | |
| tree | 253401e99fdddbb8a35aebb730b94d8e7f456933 /setup.py | |
| parent | Add on_channel_delete event. (diff) | |
| download | discord.py-9b9983422185b44eabc491064508bdbb1fa83929.tar.xz discord.py-9b9983422185b44eabc491064508bdbb1fa83929.zip | |
Fix setuputils scriptv0.1.0
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ from setuptools import setup import re requirements = '' -from open('requirements.txt') as f: +with open('requirements.txt') as f: requirements = f.read().splitlines() version = '' |