From 63a92f2faf53a1aee4d352773d5f5f54aa7bb77b Mon Sep 17 00:00:00 2001
From: Jonathan Smith <j.jaydez@gmail.com>
Date: Sat, 19 Feb 2011 10:43:26 +0000
Subject: [PATCH] To many arguments for _init_, was failing script

---
 development_icon_get.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/development_icon_get.py b/development_icon_get.py
index f09a12a3c..786b9a2eb 100644
--- a/development_icon_get.py
+++ b/development_icon_get.py
@@ -79,7 +79,7 @@ class OBJECT_PT_icons(bpy.types.Panel):
     bl_region_type = "UI"
     bl_label = "All icons"
 
-    def __init__(self, x):
+    def __init__(self):
         self.amount = 10
         self.icon_list = create_icon_list()
 
@@ -155,7 +155,7 @@ class CONSOLE_HT_icons(bpy.types.Header):
     bl_space_type = 'CONSOLE'
     _search_old = ""
 
-    def __init__(self, x):
+    def __init__(self):
         self.amount = 10
         self.icon_list = create_icon_list()
 
-- 
GitLab