Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/CeibalEncuesta
diff options
context:
space:
mode:
authorGustavo Duarte <gduarte@activitycentral.com>2013-09-11 14:10:39 (GMT)
committer Gustavo Duarte <gduarte@activitycentral.com>2013-09-11 14:10:39 (GMT)
commit59802b3d28ebbdce3466936fb94811221397aa16 (patch)
tree99e4847f15ce900122a74aa9c860f2cbe3ba762d /CeibalEncuesta
parent0e3e06baf1a1fed3f4652131dc69c09e63ced397 (diff)
change method of site module to backwrd compatibility with python 2.6 version
Diffstat (limited to 'CeibalEncuesta')
-rw-r--r--CeibalEncuesta/gtk2/setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/CeibalEncuesta/gtk2/setup.py b/CeibalEncuesta/gtk2/setup.py
index 71a1442..d782a39 100644
--- a/CeibalEncuesta/gtk2/setup.py
+++ b/CeibalEncuesta/gtk2/setup.py
@@ -10,9 +10,9 @@ from distutils.core import setup
APP_VERSION = "4.17"
-USER_BASE = site.getuserbase()
+USER_BASE = site.USER_BASE
USER_HOME = "%s/../" % USER_BASE
-USER_SITE_PACKAGES = site.getusersitepackages()
+USER_SITE_PACKAGES = site.USER_SITE
APLICATION_PATH = USER_BASE + '/share/applications/'
ESCRITORIO_PATH = '%sEscritorio/' % USER_HOME
DESKTOP_PATH = '%sDesktop/' % USER_HOME