Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgnacio Rodríguez <ignacio@sugarlabs.org>2013-02-15 18:29:03 (GMT)
committer Ignacio Rodríguez <ignacio@sugarlabs.org>2013-02-15 18:29:03 (GMT)
commitdd28104a2af0c690130df061c0997290daeb862c (patch)
treefa301def605c52a2c316ca0dc4408d123b73b16c
parent7bcd50dd1bd89df8aa576d8f92086f79c2fda429 (diff)
Edited mirror order.
-rw-r--r--utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils.py b/utils.py
index 806d8ec..2208a05 100644
--- a/utils.py
+++ b/utils.py
@@ -27,9 +27,9 @@ from sugar.activity import activity
from sugar.bundle.activitybundle import ActivityBundle
# Paths
-LIST_DOWNLOAD = "http://www.fing.edu.uy/~aaguiar/files/store.lst"
-LIST_DOWNLOAD_MIRROR1 = "http://people.sugarlabs.org/ignacio/store.lst"
-LIST_DOWNLOAD_MIRROR2 = "http://people.sugarlabs.org/aguz/store.lst"
+LIST_DOWNLOAD = "http://people.sugarlabs.org/ignacio/store.lst"
+LIST_DOWNLOAD_MIRROR1 = "http://people.sugarlabs.org/aguz/store.lst"
+LIST_DOWNLOAD_MIRROR2 = "http://www.fing.edu.uy/~aaguiar/files/store.lst"
LIST_PATH = os.path.join(activity.get_bundle_path(), 'store.lst')
ICONS_DIR = os.path.join(activity.get_activity_root(), 'data')
TMP_DIR = os.path.join(activity.get_activity_root(), "tmp")