don't raise an error if the script isn't in the resource
This commit is contained in:
parent
8b7c1681ae
commit
ade5f596f4
|
@ -363,8 +363,9 @@ class ScriptResource(resource.Resource, component.Component):
|
|||
if type not in ("dev", "debug", "normal"):
|
||||
type = "normal"
|
||||
|
||||
del self.__scripts[type]["scripts"][path]
|
||||
self.__scripts[type]["order"].remove(path)
|
||||
if path in self.__scripts[type]["scripts"]:
|
||||
del self.__scripts[type]["scripts"][path]
|
||||
self.__scripts[type]["order"].remove(path)
|
||||
|
||||
|
||||
def get_scripts(self, type=None):
|
||||
|
|
Loading…
Reference in New Issue