diff options
-rwxr-xr-x | o3d/documentation/build_docs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/o3d/documentation/build_docs.py b/o3d/documentation/build_docs.py index 940f55f..c309996 100755 --- a/o3d/documentation/build_docs.py +++ b/o3d/documentation/build_docs.py @@ -274,7 +274,7 @@ def BuildCompiledO3DJS(o3djs_files, file = open(compiled_o3djs_outpath, 'r')
contents = file.read()
file.close()
- contents = re.sub(r'goog.exportSymbol\([^\)]*\);\n', '', contents)
+ contents = re.sub(r'goog.exportSymbol\([^\)]*\);', '', contents)
requires = set(re.findall(r'o3djs.require\([^\)]*\);', contents))
contents = re.sub(r'o3djs.require\([^\)]*\);', '', contents)
file = open(compiled_o3djs_outpath, 'w')
|