mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 02:15:43 -04:00
this should fix the Pmw stuff
This commit is contained in:
parent
4cc8cf04c8
commit
1da17fe749
@ -38,8 +38,15 @@ class tk(package):
|
||||
'direct.tkpanels',
|
||||
'direct.tkwidgets')
|
||||
|
||||
module('Pmw.Pmw_1_3.lib.*', 'Pmw.Pmw_1_2.lib.*')
|
||||
module('Pmw')
|
||||
try:
|
||||
import Pmw
|
||||
except ImportError:
|
||||
Pmw = None
|
||||
|
||||
if Pmw is not None:
|
||||
sys.modules['Pmw'] = sys.modules['_Pmw']
|
||||
sys.modules['Pmw'].__name__ = 'Pmw'
|
||||
module('Pmw', 'Pmw.*')
|
||||
|
||||
class sqlite(package):
|
||||
config(display_name = "SQLite Interface")
|
||||
|
Loading…
x
Reference in New Issue
Block a user