Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2013-12-17 01:01:13 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2013-12-17 01:01:13 (GMT)
commitd0a24c818badcc9d04b7a87920902122b09d108b (patch)
tree3f4e9fb8161de9352d58b695287c266645700ace
parent7910545c2a2ee5ac3cfadf875a5a247c924b32d1 (diff)
fix string to Tie
-rwxr-xr-xmain.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.py b/main.py
index 71b591b..5d55197 100755
--- a/main.py
+++ b/main.py
@@ -84,7 +84,7 @@ class Game:
elif PLAYER_B > PLAYER_A:
winner = 'B'
if winner == None:
- msg = _('Draw')
+ msg = _('Tie')
else:
msg = _('Player %s win!') % winner
text = self.fuente2.render(msg, 1, COLOR_OWNER)