<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt;color:#000000;">Well... there seems a bug in setuptools.<br>In commands/sdist.py<br><br>There is a variable log accesed in Line 98:<br>file "/usr/lib/python2.5/site-packages/setuptools/command/sdist.py", <br>line=98,<br>in the method entries_finder<br>&nbsp; &nbsp; log.warn("unrecognized .svn/entries format in %s", dirname)<br>NameError: global name 'log' is not defined<br><br>SO at the top of the file please use :<br><br>from distutils import log<br><br>-- command/sdist.py&nbsp; &nbsp; 2008-10-20 16:02:09.000000000 +0530<br>+++ sdist_old.py&nbsp; &nbsp; &nbsp; &nbsp; 2008-10-20 16:03:45.000000000 +0530<br>@@ -1,6 +1,5 @@<br> from distutils.command.sdist import sdist as _sdist<br> from distutils.util import convert_path<br>=2Dfrom distutils import log<br> import os, re, sys,
 pkg_resources</div></body></html>