mirror of
https://github.com/star-inc/yuuki.git
synced 2024-11-10 17:13:10 +08:00
Update WebAdmin
This commit is contained in:
parent
7851883b2b
commit
cf30f0d7fd
1 changed files with 3 additions and 3 deletions
|
@ -126,9 +126,9 @@ class Yuuki:
|
|||
# Setup WebAdmin
|
||||
|
||||
if self.Threading:
|
||||
password = hash(random.random())
|
||||
webAdmin = Yuuki_WebAdmin()
|
||||
self.Thread_Control.add(webAdmin.start, (password,))
|
||||
password = str(hash(random.random()))
|
||||
self.webAdmin = Yuuki_WebAdmin(self)
|
||||
self.Thread_Control.add(self.webAdmin.start, (password,))
|
||||
print("WebAdmin Password: {}".format(password))
|
||||
|
||||
# i18n Short Name
|
||||
|
|
Loading…
Reference in a new issue