mirror of https://gitlab.com/bashrc2/epicyon
Remove unused argument
parent
8a3de8e736
commit
ea30834f72
|
@ -2350,7 +2350,6 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
login_nickname, login_password, register = \
|
login_nickname, login_password, register = \
|
||||||
html_get_login_credentials(login_params,
|
html_get_login_credentials(login_params,
|
||||||
self.server.last_login_time,
|
self.server.last_login_time,
|
||||||
domain,
|
|
||||||
registrations_open)
|
registrations_open)
|
||||||
if login_nickname and login_password:
|
if login_nickname and login_password:
|
||||||
if is_system_account(login_nickname):
|
if is_system_account(login_nickname):
|
||||||
|
|
|
@ -24,7 +24,7 @@ from theme import get_text_mode_logo
|
||||||
|
|
||||||
|
|
||||||
def html_get_login_credentials(login_params: str,
|
def html_get_login_credentials(login_params: str,
|
||||||
last_login_time: int, domain: str,
|
last_login_time: int,
|
||||||
registrations_open: bool) -> (str, str, bool):
|
registrations_open: bool) -> (str, str, bool):
|
||||||
"""Receives login credentials via HTTPServer POST
|
"""Receives login credentials via HTTPServer POST
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue