Module: deluge Branch: master Commit: e9ce506d1c0b4231c163c54b7236caaa1958b683
Author: Damien Churchill <[email protected]> Date: Sat Aug 14 17:38:30 2010 +0100 fix the script resource on windows --- deluge/ui/web/server.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deluge/ui/web/server.py b/deluge/ui/web/server.py index ba2c3d6..fa00008 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 -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
