From 795e6ec5bbf0b8ba880c2397a8a99017337e4022 Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Thu, 2 May 2013 23:08:56 +0100 Subject: [PATCH] Added missing "self" in function calls --- usr/lib/linuxmint/mintMenu/plugins/easybuttons.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/lib/linuxmint/mintMenu/plugins/easybuttons.py b/usr/lib/linuxmint/mintMenu/plugins/easybuttons.py index f1a644e..7db1a17 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/easybuttons.py +++ b/usr/lib/linuxmint/mintMenu/plugins/easybuttons.py @@ -289,9 +289,9 @@ class ApplicationLauncher( easyButton ): def loadDesktopEntry( self, desktopItem ): try: - self.appName = strip_accents(desktopItem.getName()) - self.appGenericName = strip_accents(desktopItem.getGenericName()) - self.appComment = strip_accents(desktopItem.getComment()) + self.appName = self.strip_accents(desktopItem.getName()) + self.appGenericName = self.strip_accents(desktopItem.getGenericName()) + self.appComment = self.strip_accents(desktopItem.getComment()) self.appExec = desktopItem.getExec() self.appIconName = desktopItem.getIcon() self.appCategories = desktopItem.getCategories()