Always enable console

This commit is contained in:
Marco Pesenti Gritti 2006-06-19 23:04:53 -04:00
parent 8bcdb8f3dd
commit 758d9fba43
2 changed files with 2 additions and 7 deletions

View File

@ -16,7 +16,7 @@ class LogWriter:
self._logger = dbus.Interface(proxy_obj, 'com.redhat.Sugar.Logger')
def start(self):
if os.environ.has_key('SUGAR_USE_CONSOLE') and self._use_console:
if self._use_console:
sys.stdout = self
sys.stderr = self

View File

@ -62,8 +62,6 @@ if curdir == '.':
else:
basedir = os.path.dirname(curdir)
console = False
if os.path.isfile(os.path.join(curdir, '__uninstalled__.py')):
if basedir == '':
print 'Running sugar from current directory...'
@ -71,15 +69,12 @@ if os.path.isfile(os.path.join(curdir, '__uninstalled__.py')):
print 'Running sugar from ' + basedir + ' ...'
add_to_python_path(basedir)
add_to_python_path(os.path.join(basedir, 'cut-n-paste'))
console = True
else:
print 'Running the installed sugar...'
add_to_python_path(os.path.expanduser('~/.sugar/activities'))
if console:
os.environ['SUGAR_USE_CONSOLE'] = 'yes'
print 'Redirecting output to the console, press ctrl+d to open it.'
print 'Redirecting output to the console, press ctrl+d to open it.'
from sugar.session.session import Session