13 lines
218 B
Python
Executable File
13 lines
218 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# Sugar developer console launcher
|
|
import pygtk
|
|
pygtk.require('2.0')
|
|
|
|
import os, sys
|
|
from sugar import env
|
|
|
|
sys.path.insert(0, os.path.join(env.get_data_dir(), 'shell'))
|
|
|
|
import console.console
|