From 9622f37e8658bacb65b031c047ba2d6649f3bf5a Mon Sep 17 00:00:00 2001 From: James McMahon Date: Sat, 26 Feb 2011 06:01:35 -0800 Subject: [PATCH] Removed erroneous return --- usr/lib/linuxmint/mintMenu/plugins/system_management.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) mode change 100755 => 100644 usr/lib/linuxmint/mintMenu/plugins/system_management.py diff --git a/usr/lib/linuxmint/mintMenu/plugins/system_management.py b/usr/lib/linuxmint/mintMenu/plugins/system_management.py old mode 100755 new mode 100644 index 7474bbb..13f6445 --- a/usr/lib/linuxmint/mintMenu/plugins/system_management.py +++ b/usr/lib/linuxmint/mintMenu/plugins/system_management.py @@ -157,8 +157,7 @@ class pluginclass( object ): if ( self.showTerminal == True ): Button4 = easyButton( self.term, self.iconsize, [_("Terminal")], -1, -1 ) - Button4.connect( "clicked", self.ButtonClicked, -self.term ) + Button4.connect( "clicked", self.ButtonClicked, self.term ) Button4.show() self.systemBtnHolder.pack_start( Button4, False, False ) self.mintMenuWin.setTooltip( Button4, _("Use the command line") )