Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
python: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Raab committed Oct 7, 2016
1 parent 570098f commit 5424aaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/python/python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ int PYTHON_PLUGIN_FUNCTION (Open) (ckdb::Plugin * handle, ckdb::Key * errorKey)
data->tstate = Py_NewInterpreter ();
if (data->tstate == nullptr)
{
ELEKTRA_SET_ERROR (111, errorKey, "Unable to create sub intepreter");
ELEKTRA_SET_ERROR (111, errorKey, "Unable to create sub interpreter");
goto error;
}
PyThreadState_Swap (data->tstate);
Expand Down

0 comments on commit 5424aaf

Please sign in to comment.