[Checkins] SVN: ldappas/trunk/setup.py Add required import for read() function

Kevin Teague kevin at bud.ca
Thu Feb 10 16:33:13 EST 2011


Log message for revision 120268:
  Add required import for read() function

Changed:
  U   ldappas/trunk/setup.py

-=-
Modified: ldappas/trunk/setup.py
===================================================================
--- ldappas/trunk/setup.py	2011-02-10 21:27:30 UTC (rev 120267)
+++ ldappas/trunk/setup.py	2011-02-10 21:33:13 UTC (rev 120268)
@@ -1,4 +1,5 @@
 from setuptools import setup, find_packages
+import os
 
 tests_require = [
     'zope.app.testing',
@@ -18,7 +19,7 @@
 LDAP server.
 """,
     long_description=(
-        read('CHANGES.txt')
+        read('CHANGES.txt'),
     ),
     packages=find_packages('src'),
     package_dir = {'': 'src'},



More information about the checkins mailing list