diff options
Diffstat (limited to 'o3d/plugin/idl/codegen.py')
-rw-r--r-- | o3d/plugin/idl/codegen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/o3d/plugin/idl/codegen.py b/o3d/plugin/idl/codegen.py index 8f029bf..329c797 100644 --- a/o3d/plugin/idl/codegen.py +++ b/o3d/plugin/idl/codegen.py @@ -23,7 +23,7 @@ import os.path third_party = os.path.join('..', '..', '..', 'third_party') pythonpath = os.pathsep.join([os.path.join(third_party, 'gflags', 'python'), - os.path.join(third_party, 'ply', 'files')]) + os.path.join(third_party, 'ply')]) orig_pythonpath = os.environ.get('PYTHONPATH') if orig_pythonpath: @@ -31,6 +31,6 @@ if orig_pythonpath: os.environ['PYTHONPATH'] = pythonpath -nixysa = os.path.join(third_party, 'nixysa', 'files', 'codegen.py') +nixysa = os.path.join(third_party, 'nixysa', 'codegen.py') status = subprocess.call([sys.executable, nixysa] + sys.argv[1:]) sys.exit(status) |