http://www.mediawiki.org/wiki/Special:Code/pywikipedia/11538
Revision: 11538 Author: valhallasw Date: 2013-05-15 19:26:22 +0000 (Wed, 15 May 2013) Log Message: ----------- It's httplib2 we need, not setuptools...
Modified Paths: -------------- branches/rewrite/pywikibot/comms/threadedhttp.py
Modified: branches/rewrite/pywikibot/comms/threadedhttp.py =================================================================== --- branches/rewrite/pywikibot/comms/threadedhttp.py 2013-05-15 18:22:38 UTC (rev 11537) +++ branches/rewrite/pywikibot/comms/threadedhttp.py 2013-05-15 19:26:22 UTC (rev 11538) @@ -45,7 +45,7 @@ pkg_resources.require("httplib2") except ImportError: pywikibot.error( - u"Error: You need the python module setuptools to use this module") + u"Error: You need the python module httplib2 to use this module") sys.exit(1)
class ConnectionPool(object):
pywikipedia-svn@lists.wikimedia.org