applications: don't spam system log with system tools names

This commit is contained in:
monsta 2017-05-24 18:28:08 +03:00
parent 27c4a837da
commit 2698cd95ae

View File

@ -1742,7 +1742,6 @@ class pluginclass( object ):
def find_applications_recursively(app_list, directory, catName):
for item in directory.get_contents():
if item.get_type() == matemenu.TYPE_ENTRY:
print "=======>>> " + str(item.name) + " = " + str(catName)
app_list.append( { "entry": item, "category": catName } )
elif item.get_type() == matemenu.TYPE_DIRECTORY:
find_applications_recursively(app_list, item, catName)