0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

better fix

This commit is contained in:
Mathias Stearn 2010-08-10 15:03:25 -04:00
parent ed8cb27837
commit d32a6f827a

View File

@ -1093,7 +1093,7 @@ def jsToH(target, source, env):
for s in source:
filename = str(s)
objname = filename.split(os.path.sep)[1].split('.')[0]
objname = os.path.split(filename)[1].split('.')[0]
stringname = '_jscode_raw_' + objname
h.append('const StringData ' + stringname + " = ")