Some minor fixes
This commit is contained in:
parent
34987e1ef8
commit
0f969404eb
@ -1,5 +1,7 @@
|
|||||||
sugardir = $(pythondir)/sugar/browser
|
sugardir = $(pythondir)/sugar/browser
|
||||||
sugar_PYTHON = browser.py
|
sugar_PYTHON = \
|
||||||
|
__init__.py \
|
||||||
|
browser.py
|
||||||
|
|
||||||
icondir = $(pkgdatadir)
|
icondir = $(pkgdatadir)
|
||||||
icon_DATA = \
|
icon_DATA = \
|
||||||
|
0
sugar/browser/__init__.py
Normal file
0
sugar/browser/__init__.py
Normal file
@ -1,5 +1,6 @@
|
|||||||
sugardir = $(pythondir)/sugar/chat
|
sugardir = $(pythondir)/sugar/chat
|
||||||
sugar_PYTHON = \
|
sugar_PYTHON = \
|
||||||
|
__init__.py \
|
||||||
chat.py \
|
chat.py \
|
||||||
richtext.py
|
richtext.py
|
||||||
|
|
||||||
|
0
sugar/chat/__init__.py
Normal file
0
sugar/chat/__init__.py
Normal file
9
sugar/env.py
Normal file
9
sugar/env.py
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import os
|
||||||
|
|
||||||
|
try:
|
||||||
|
from sugar.__uninstalled__ import *
|
||||||
|
except ImportError:
|
||||||
|
from sugar.__installed__ import *
|
||||||
|
|
||||||
|
def get_data_file(filename):
|
||||||
|
return internal_get_data_file(filename)
|
Loading…
Reference in New Issue
Block a user