fix semi-colon in the login window
change themes back to a static.File resource
This commit is contained in:
parent
427cc63803
commit
134bed774c
|
@ -101,7 +101,7 @@ Copyright:
|
|||
iconCls: 'x-deluge-icon-warning'
|
||||
});
|
||||
}
|
||||
}.bindWithEvent(this);
|
||||
}.bindWithEvent(this)
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue