Zkhalido added a comment.

  Also, I believe the current UnicodeMixin class is not sufficient for PY2 and 
PY3.
  
  Needs to be: (http://lucumr.pocoo.org/2011/1/22/forwards-compatible-python/)
  
    class UnicodeMixin(object):
      if not PY2::
          def __str__(self):
              """Return a string representation."""
              return self.__unicode__()
      else:
          def __str__(self):
              """Return a string representation."""
              return self.encode('utf-8')

TASK DETAIL
  https://phabricator.wikimedia.org/T223894

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Zkhalido
Cc: Zkhalido, Xqt, Aklapper, Lokal_Profil, pywikibot-bugs-list, Chaytanya, 
Viztor, DannyS712, Wenyi, Kieubinhtb, Guilhermebm, Mh-3110, Asad_Ali_Palijo, 
Lahi, Soteriaspace, RazeSoldier, JakeTheDeveloper, Tbscho, MayS, Mdupont, 
JJMC89, Dvorapa, D3r1ck01, Altostratus, Avicennasis, MuhammadShuaib, Tmalhotra, 
SimmeD, mys_721tx, jayvdb, Dalba, Masti, Alchimista, Rxy
_______________________________________________
pywikibot-bugs mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs

Reply via email to