# HG changeset patch # User ymh # Date 1433717436 -7200 # Node ID ca7e5ca8635c82b33d1b9e6727bd6eb22375cefe # Parent 5a15dea4302abe3212a6453f6274b28ea11521cf unicode handling in version diff -r 5a15dea4302a -r ca7e5ca8635c server/src/__init__.py --- a/server/src/__init__.py Mon Jun 08 00:45:26 2015 +0200 +++ b/server/src/__init__.py Mon Jun 08 00:50:36 2015 +0200 @@ -1,6 +1,6 @@ VERSION = (0, 1, 0, "alpha", 0) -VERSION_STR = unicode(".".join(map(lambda i:"%02d" % (i,), VERSION[:2]))) +VERSION_STR = u".".join(map(lambda i:"%02d" % (i,), VERSION[:2])) def get_version():