Displaying 1 result from an estimated 1 matches for "init_entry".
Did you mean:
  bit_entry
  
2013 Jan 06
1
[PATCH] menugen: Make it compatible with Py3k
...++++++++++++++++++++++++-------------------------
 1 file changed, 28 insertions(+), 28 deletions(-)
diff --git a/com32/cmenu/menugen.py b/com32/cmenu/menugen.py
index 70ec1f8..da64d93 100644
--- a/com32/cmenu/menugen.py
+++ b/com32/cmenu/menugen.py
@@ -72,9 +72,9 @@ class Menusystem:
        self.init_entry()
        self.init_menu()
        self.init_system()
-       self.vtypes = " OR ".join(self.types.keys())
-       self.vattrs = " OR ".join(filter(lambda x: x[0] != "_", self.entry.keys()))
-       self.mattrs = " OR ".join(filter(lambda x: x[0] != "_&q...