https://bugzilla.wikimedia.org/show_bug.cgi?id=59970
Mpaa <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Mpaa <[email protected]> --- Actually the problem seems to be the missing queue module. In pywikibot\comms\http.py there is a try ... except ... to handle a missing hhtplib2, unless this is not updated any longer. try: from httplib2 import SSLHandshakeError import Queue -> this looks to be preferred!! import urlparse import cookielib except ImportError: from ssl import SSLError as SSLHandshakeError import queue as Queue import urllib as urlparse from http import cookiejar as cookielib Speaking about queue ... in different parts of pywikibot, there is a preference for "Queue" over "queue" and viceversa. In pywikibot\__init__.py there is: try: from queue import Queue -> this looks to be preferred!! except ImportError: from Queue import Queue Sounds strange to me. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ Pywikipedia-bugs mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/pywikipedia-bugs
