From e9ce506d1c0b4231c163c54b7236caaa1958b683 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Sat, 14 Aug 2010 17:38:30 +0100 Subject: [PATCH] fix the script resource on windows --- deluge/ui/web/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/web/server.py b/deluge/ui/web/server.py index ba2c3d6b3..fa0000809 100644 --- a/deluge/ui/web/server.py +++ b/deluge/ui/web/server.py @@ -411,7 +411,7 @@ class ScriptResource(resource.Resource, component.Component): def getChild(self, path, request): if hasattr(request, "lookup_path"): - request.lookup_path = os.path.join(request.lookup_path, path) + request.lookup_path += '/' + path else: request.lookup_path = path return self