fix semi-colon in the login window

change themes back to a static.File resource
This commit is contained in:
Damien Churchill 2009-04-16 19:38:54 +00:00
parent 427cc63803
commit 134bed774c
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ Copyright:
iconCls: 'x-deluge-icon-warning'
});
}
}.bindWithEvent(this);
}.bindWithEvent(this)
});
},

View File

@ -226,7 +226,7 @@ class TopLevel(resource.Resource):
self.putChild("json", JSON())
self.putChild("upload", Upload())
self.putChild("render", Render())
self.putChild("themes", LookupResource("Themes", rpath("themes")))
self.putChild("themes", static.File(rpath("themes")))
self.putChild("tracker", Tracker())
def getChild(self, path, request):