Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--player.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/player.py b/player.py
index a6636dc..f02e03a 100644
--- a/player.py
+++ b/player.py
@@ -36,7 +36,7 @@ class Player:
def __init__(self, buddy, shape='circle'):
self.buddy = buddy
name = buddy.props.nick.decode('utf-8')
- self.nick = unicodedata.normalize('NFC',name)
+ self.nick = unicodedata.normalize('NFC', name)
colors = buddy.props.color.split(",")
def string2Color(str):