Skip to content

Commit 6204075

Browse files
committed
up
1 parent ca67936 commit 6204075

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kbe/src/server/baseapp/baseapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ bool Baseapp::uninstallPyModules()
308308
script::PyProfile::stop("kbengine");
309309

310310
char buf[MAX_BUF];
311-
kbe_snprintf(buf, MAX_BUF, "baseapp%u.prof", startGroupOrder_);
311+
kbe_snprintf(buf, MAX_BUF, "baseapp%u.pyprofile", startGroupOrder_);
312312
script::PyProfile::dump("kbengine", buf);
313313
script::PyProfile::remove("kbengine");
314314
}

kbe/src/server/cellapp/cellapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ bool Cellapp::uninstallPyModules()
173173
script::PyProfile::stop("kbengine");
174174

175175
char buf[MAX_BUF];
176-
kbe_snprintf(buf, MAX_BUF, "baseapp%u.prof", startGroupOrder_);
176+
kbe_snprintf(buf, MAX_BUF, "cellapp%u.pyprofile", startGroupOrder_);
177177
script::PyProfile::dump("kbengine", buf);
178178
script::PyProfile::remove("kbengine");
179179
}

0 commit comments

Comments
 (0)