Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/common/Config.py
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2008-12-21 01:21:48 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2008-12-21 01:21:48 (GMT)
commit7ce6046f986e2a3b6c13748215fc80c7e077fd8b (patch)
treea40b39496b254480a9060781500dd5bda6737320 /common/Config.py
parentf89c05730018f9ee2812b3901ed6957c85503c30 (diff)
move tooltipi_<lang>.py to i18n; MANIFEST fixes
Diffstat (limited to 'common/Config.py')
-rw-r--r--common/Config.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/common/Config.py b/common/Config.py
index 2b3de1a..b7d8591 100644
--- a/common/Config.py
+++ b/common/Config.py
@@ -48,8 +48,7 @@ for i in (INSTANCE_DIR, DATA_DIR, SNDS_INFO_DIR, TMP_DIR):
if not os.path.isdir(i): os.makedirs(i)
#PLUGIN
-PLUGIN_DEBUG = os.getenv("CSOUND_LOGFILE")
-if PLUGIN_DEBUG == "": PLUGIN_DEBUG = "STDERR"
+PLUGIN_DEBUG = os.getenv("CSOUND_LOGFILE", "")
PLUGIN_VERBOSE = DEBUG
PLUGIN_UNIVORC = os.path.join(FILES_DIR, "tamtamorc.csd")
PLUGIN_KSMPS = 64
@@ -239,7 +238,7 @@ DEFAULT_GRID_DIV2 = DEFAULT_GRID / 2.0
## ToolTips
####################
LANGUAGE = 'en'
-exec 'from Resources.tooltips_%s import Tooltips' % LANGUAGE
+exec 'from i18n.tooltips_%s import Tooltips' % LANGUAGE
####################