0

Merge pull request #1118 from CounterPillow/patch-1

genPOI: Fix warning for unresolvable UUID
This commit is contained in:
Aaron Griffith
2014-06-23 05:08:59 -04:00

View File

@@ -136,7 +136,7 @@ class PlayerDict(dict):
if 'name' in profile:
return profile['name']
except (ValueError, urllib2.URLError):
logging.warning("Unable to get player name for UUID %s", playername)
logging.warning("Unable to get player name for UUID %s", self._name)
def handlePlayers(rset, render, worldpath):
if not hasattr(rset, "_pois"):