From 2e472ae11c4ed00e851706d626c614350ea52ff4 Mon Sep 17 00:00:00 2001 From: cuu Date: Wed, 7 Aug 2019 21:44:53 +0800 Subject: [PATCH] ... --- Menu/GameShell/10_Settings/Cores/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Menu/GameShell/10_Settings/Cores/__init__.py b/Menu/GameShell/10_Settings/Cores/__init__.py index a790645..4851e20 100644 --- a/Menu/GameShell/10_Settings/Cores/__init__.py +++ b/Menu/GameShell/10_Settings/Cores/__init__.py @@ -15,7 +15,7 @@ from libs.roundrects import aa_round_rect from UI.constants import Width,Height,ICON_TYPES from UI.page import Page,PageSelector from UI.label import Label -from UI.util_funcs import midRect,FileExists,IsExecutable,ArmSystem +from UI.util_funcs import midRect,FileExists,IsExecutable,ArmSystem,CmdClean from UI.keys_def import CurKeys, IsKeyStartOrA, IsKeyMenuOrB from UI.scroller import ListScroller from UI.icon_pool import MyIconPool @@ -165,7 +165,7 @@ class CoresPage(Page): cur_li = self._MyList[self._PsIndex] - os.system("rm %s" % cur_li._Flag) + os.system("rm %s" % CmdClean(cur_li._Flag)) self.GenList() self.RefreshPsIndex()