Thanks!

On Sat, May 20, 2017 at 6:11 PM,  <sly...@gmail.com> wrote:
> From: Sergei Trofimovich <sly...@gentoo.org>
>
> The changes are mostly:
> - 'print foo' -> 'print(foo)'
> - conversion to explicit byte/string API
>
> Unfortunately this change drops python2 support.

No problem, it's about time projects start dumping Python 2.x support!

>          for a in authors:
> -            print " %s:" % a
> +            print(" %s:" % a)
>              changes = authorchanges[a]
>              changes.sort()
>              for c in changes:
> -                print "  * %s" % c
> +                print("  * %s" % c)

Adding .encode("utf-8") fixes the Python 2.x support here this time though.

-- 
Daniel Svensson

--
_______________________________________________
Xmms2-devel mailing list
Xmms2-devel@lists.xmms2.org
https://lists.xmms2.org/cgi-bin/mailman/listinfo/xmms2-devel

Reply via email to