Revision: 8409 Author: multichill Date: 2010-08-18 19:58:17 +0000 (Wed, 18 Aug 2010)
Log Message: ----------- Fixed bug with self.convertLinks (added missing argument).
Modified Paths: -------------- trunk/pywikipedia/imagecopy_self.py
Modified: trunk/pywikipedia/imagecopy_self.py =================================================================== --- trunk/pywikipedia/imagecopy_self.py 2010-08-17 18:10:57 UTC (rev 8408) +++ trunk/pywikipedia/imagecopy_self.py 2010-08-18 19:58:17 UTC (rev 8409) @@ -369,7 +369,7 @@
# Description if not contents[u'location']==u'': - description = self.convertLinks(contents[u'location']) + u'\n' + description = self.convertLinks(contents[u'location'], imagepage.site()) + u'\n' if not contents[u'description']==u'': description = description + self.convertLinks(contents[u'description'], imagepage.site())
pywikipedia-svn@lists.wikimedia.org