From 777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1 Mon Sep 17 00:00:00 2001
From: Matthew Barnes <mbarnes@redhat.com>
Date: Tue, 16 Aug 2011 11:25:56 -0400
Subject: Coding style and whitespace cleanup.

---
 modules/plugin-python/e-plugin-python.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

(limited to 'modules/plugin-python/e-plugin-python.c')

diff --git a/modules/plugin-python/e-plugin-python.c b/modules/plugin-python/e-plugin-python.c
index aaa6fb2b66..a00e629068 100644
--- a/modules/plugin-python/e-plugin-python.c
+++ b/modules/plugin-python/e-plugin-python.c
@@ -44,7 +44,8 @@ static gpointer parent_class;
 static GType plugin_python_type;
 
 static gchar *
-get_xml_prop (xmlNodePtr node, const gchar *id)
+get_xml_prop (xmlNodePtr node,
+              const gchar *id)
 {
 	xmlChar *prop;
 	gchar *out = NULL;
@@ -77,7 +78,8 @@ plugin_python_finalize (GObject *object)
 }
 
 static gint
-plugin_python_construct (EPlugin *plugin, xmlNodePtr root)
+plugin_python_construct (EPlugin *plugin,
+                         xmlNodePtr root)
 {
 	EPluginPython *plugin_python;
 
@@ -124,7 +126,7 @@ plugin_python_invoke (EPlugin *plugin,
 
 		priv->pModule = PyImport_Import (pModuleName);
 
-		Py_DECREF (pModuleName); //Free
+		Py_DECREF (pModuleName);
 
 		if (priv->pModule == NULL) {
 			PyErr_Print ();
-- 
cgit