mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-24 18:29:12 +00:00
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…
x
Reference in New Issue
Block a user