mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Fix template_name
argument for login page
This commit is contained in:
parent
7ff3abe8b7
commit
c761e6e8d0
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ class AuthController(object):
|
|||
|
||||
def get_loginform(self, redirect_uri=''):
|
||||
from plexpy.webserve import serve_template
|
||||
return serve_template(templatename="login.html", title="Login", redirect_uri=unquote(redirect_uri))
|
||||
return serve_template(template_name="login.html", title="Login", redirect_uri=unquote(redirect_uri))
|
||||
|
||||
@cherrypy.expose
|
||||
def index(self, *args, **kwargs):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue