2d9a06ec9a
Get rid of the now useless env.get_services_dir
13 lines
192 B
Python
Executable File
13 lines
192 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import pygtk
|
|
pygtk.require('2.0')
|
|
|
|
import os
|
|
import sys
|
|
from sugar import env
|
|
|
|
sys.path.insert(0, os.path.join(env.get_data_dir(), 'services/console'))
|
|
|
|
import console
|