Revision: 6991 Author: nicdumz Date: 2009-06-22 15:47:57 +0000 (Mon, 22 Jun 2009)
Log Message: ----------- pywikibot.data.http -> pywikibot.comms.http
Modified Paths: -------------- branches/rewrite/pywikibot/page.py
Modified: branches/rewrite/pywikibot/page.py =================================================================== --- branches/rewrite/pywikibot/page.py 2009-06-22 15:30:01 UTC (rev 6990) +++ branches/rewrite/pywikibot/page.py 2009-06-22 15:47:57 UTC (rev 6991) @@ -1406,7 +1406,7 @@ same ImagePage object, the page will only be downloaded once. """ if not hasattr(self, '_imagePageHtml'): - from pywikibot.data import http + from pywikibot.comms import http path = "%s/index.php?title=%s" \ % (self.site().scriptpath(), self.title(asUrl=True)) self._imagePageHtml = http.request(self.site(), path)
pywikipedia-svn@lists.wikimedia.org