mirror of
https://github.com/XiaoMi/ha_xiaomi_home.git
synced 2026-01-20 09:19:37 +08:00
Fix function naming
This commit is contained in:
parent
2f804421cf
commit
43104736a6
@ -51,7 +51,7 @@ import asyncio
|
|||||||
|
|
||||||
_template = ""
|
_template = ""
|
||||||
|
|
||||||
def __load_page_template():
|
def _load_page_template():
|
||||||
path = os.path.join(
|
path = os.path.join(
|
||||||
os.path.dirname(os.path.abspath(__file__)),
|
os.path.dirname(os.path.abspath(__file__)),
|
||||||
'resource/oauth_redirect_page.html')
|
'resource/oauth_redirect_page.html')
|
||||||
@ -64,7 +64,7 @@ async def oauth_redirect_page(lang: str, status: str) -> str:
|
|||||||
global template
|
global template
|
||||||
if _template == "":
|
if _template == "":
|
||||||
await asyncio.get_event_loop().run_in_executor(
|
await asyncio.get_event_loop().run_in_executor(
|
||||||
None, __load_page_template)
|
None, _load_page_template)
|
||||||
web_page = _template.replace('LANG_PLACEHOLDER', lang)
|
web_page = _template.replace('LANG_PLACEHOLDER', lang)
|
||||||
web_page = web_page.replace('STATUS_PLACEHOLDER', status)
|
web_page = web_page.replace('STATUS_PLACEHOLDER', status)
|
||||||
return web_page
|
return web_page
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user