mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
Fix import of missing os
This commit is contained in:
parent
d6b8f5a7ea
commit
59b5db96f3
2 changed files with 2 additions and 3 deletions
|
@ -8,8 +8,7 @@ __builtin__.process = 'ai'
|
||||||
__builtin__.__dict__.update(__import__('pandac.PandaModules', fromlist=['*']).__dict__)
|
__builtin__.__dict__.update(__import__('pandac.PandaModules', fromlist=['*']).__dict__)
|
||||||
from direct.extensions_native import HTTPChannel_extensions
|
from direct.extensions_native import HTTPChannel_extensions
|
||||||
|
|
||||||
import argparse
|
import argparse, gc, os
|
||||||
import gc
|
|
||||||
|
|
||||||
# Panda3D 1.10.0 is 63.
|
# Panda3D 1.10.0 is 63.
|
||||||
gc.disable()
|
gc.disable()
|
||||||
|
|
|
@ -7,7 +7,7 @@ __builtin__.process = 'uberdog'
|
||||||
__builtin__.__dict__.update(__import__('pandac.PandaModules', fromlist=['*']).__dict__)
|
__builtin__.__dict__.update(__import__('pandac.PandaModules', fromlist=['*']).__dict__)
|
||||||
from direct.extensions_native import HTTPChannel_extensions
|
from direct.extensions_native import HTTPChannel_extensions
|
||||||
|
|
||||||
import argparse
|
import argparse, os
|
||||||
|
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument('--base-channel', help='The base channel that the server may use.')
|
parser.add_argument('--base-channel', help='The base channel that the server may use.')
|
||||||
|
|
Loading…
Reference in a new issue