From c1e7f7260d3060f8d3d95566019148d5b744ad4e Mon Sep 17 00:00:00 2001 From: David Vierra Date: Mon, 12 Sep 2011 13:29:39 -1000 Subject: [PATCH] fix unicode error (string.format should probably promote the format string to unicode so I don't have to keep this in mind :( --- infiniteworld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infiniteworld.py b/infiniteworld.py index 04c9187..9fdd556 100644 --- a/infiniteworld.py +++ b/infiniteworld.py @@ -119,7 +119,7 @@ this way. print "Minecraft_Server.jar storage initialized." - print "Each server is stored in a subdirectory of {0} named with the server's version number".format(self.cacheDir) + print u"Each server is stored in a subdirectory of {0} named with the server's version number".format(self.cacheDir) print "Cached servers: ", self.versions