Skip to content

Commit f1097e8

Browse files
committed
[lldb] Fix build after d5a62b7
I renamed something but forgot to update the uses of it. Minor thinko.
1 parent 6bab400 commit f1097e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2442,7 +2442,7 @@ ConstString ScriptInterpreterPythonImpl::GetSyntheticTypeName(
24422442
return {};
24432443

24442444
PythonString type_name(PyRefType::Borrowed, py_return.get());
2445-
return ConstString(py_string.GetString());
2445+
return ConstString(type_name.GetString());
24462446
}
24472447

24482448
bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword(

0 commit comments

Comments
 (0)