Skip to content

Commit 0245848

Browse files
removed useless prefix
Signed-off-by: Patrick Bergeron <[email protected]>
1 parent 2d1a67e commit 0245848

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/lib/app/PyTwkApp/PyMuSymbolType.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@ namespace TwkApp
6262
// Helper function for direct cout printing
6363
static PyObject* unsafe_mu_print(PyObject* args)
6464
{
65-
// const char *prefix = "Unsafe Mu print: ";
66-
const char* prefix = "";
67-
6865
size_t nargs = PyTuple_Size(args);
6966
if (nargs >= 1)
7067
{
@@ -73,7 +70,7 @@ namespace TwkApp
7370
{
7471
const char* str = PyUnicode_AsUTF8(arg);
7572
if (str)
76-
cout << prefix << str;
73+
cout << str;
7774
}
7875
}
7976
Py_RETURN_NONE;

0 commit comments

Comments
 (0)