aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2015-08-23 04:39:58 -0400
committerRapptz <[email protected]>2015-08-23 04:39:58 -0400
commit9b9983422185b44eabc491064508bdbb1fa83929 (patch)
tree253401e99fdddbb8a35aebb730b94d8e7f456933 /setup.py
parentAdd on_channel_delete event. (diff)
downloaddiscord.py-9b9983422185b44eabc491064508bdbb1fa83929.tar.xz
discord.py-9b9983422185b44eabc491064508bdbb1fa83929.zip
Fix setuputils scriptv0.1.0
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 4b059e54..20245d04 100644
--- a/setup.py
+++ b/setup.py
@@ -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 = ''