[libpeas] Fix typos in strings in the Python loader
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libpeas] Fix typos in strings in the Python loader
- Date: Wed, 7 Jul 2010 21:30:25 +0000 (UTC)
commit b00e3b9a34a4262079871ab4d8a7984e29991b24
Author: Philip Withnall <philip tecnocode co uk>
Date: Wed Jul 7 22:17:24 2010 +0100
Fix typos in strings in the Python loader
loaders/python/peas-plugin-loader-python.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/loaders/python/peas-plugin-loader-python.c b/loaders/python/peas-plugin-loader-python.c
index aa20a0e..405562e 100644
--- a/loaders/python/peas-plugin-loader-python.c
+++ b/loaders/python/peas-plugin-loader-python.c
@@ -253,7 +253,7 @@ peas_plugin_loader_python_add_module_directory (PeasPluginLoader *loader,
state = pyg_gil_state_ensure ();
- g_debug ("Adding '%s' as a module path for the python loader", module_dir);
+ g_debug ("Adding '%s' as a module path for the Python loader", module_dir);
peas_plugin_loader_python_add_module_path (pyloader, module_dir);
pyg_gil_state_release (state);
@@ -270,7 +270,7 @@ peas_plugin_loader_python_load (PeasPluginLoader *loader,
if (pyloader->priv->init_failed)
{
- g_warning ("Cannot load python plugin Python '%s' since libpeas was "
+ g_warning ("Cannot load Python plugin '%s' since libpeas was "
"not able to initialize the Python interpreter",
peas_plugin_info_get_name (info));
@@ -470,7 +470,7 @@ peas_python_init (PeasPluginLoaderPython *loader)
gobject = PyImport_ImportModule ("gobject");
if (gobject == NULL)
{
- g_warning ("Error initializing Python interpreter: cound not "
+ g_warning ("Error initializing Python interpreter: could not "
"import gobject");
goto python_init_error;
@@ -480,7 +480,7 @@ peas_python_init (PeasPluginLoaderPython *loader)
PyGObject_Type = PyDict_GetItemString (mdict, "GObject");
if (PyGObject_Type == NULL)
{
- g_warning ("Error initializing Python interpreter: cound not "
+ g_warning ("Error initializing Python interpreter: could not "
"get gobject.GObject");
goto python_init_error;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]