Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Ortiz <rafael@activitycentral.com>2012-03-29 18:33:49 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2012-03-29 18:33:49 (GMT)
commitfa1cb850dd555a6283280458d0b2cec3af941d01 (patch)
tree12f8a19f06c12533ef7d09d72256794d499c3bfb
parent70d565f93584c7ba015d51d39fc40161b1ca0b83 (diff)
Adding utf-8 headers based on Ariel Calzada's patches.
-rwxr-xr-xactivity.py3
-rw-r--r--game.py2
-rw-r--r--maze.py2
-rw-r--r--player.py2
4 files changed, 8 insertions, 1 deletions
diff --git a/activity.py b/activity.py
index fec3947..f6ef333 100755
--- a/activity.py
+++ b/activity.py
@@ -1,4 +1,5 @@
-import gtk
+# -*- coding: utf-8 -*-
+
import olpcgames
import pygame
diff --git a/game.py b/game.py
index e9ec3b4..f710d92 100644
--- a/game.py
+++ b/game.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
# Maze.activity
# A simple multi-player maze game for the XO laptop.
# http://wiki.laptop.org/go/Maze
diff --git a/maze.py b/maze.py
index 8fec99c..422a546 100644
--- a/maze.py
+++ b/maze.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
# Maze.activity
# A simple multi-player maze game for the XO laptop.
# http://wiki.laptop.org/go/Maze
diff --git a/player.py b/player.py
index 4ece679..f1993d3 100644
--- a/player.py
+++ b/player.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
# Maze.activity
# A simple multi-player maze game for the XO laptop.
# http://wiki.laptop.org/go/Maze