j'y crois tellement que je push
This commit is contained in:
parent
8ec5aa52ba
commit
e13c4ee429
4
V6.py
4
V6.py
|
@ -829,6 +829,7 @@ def very_custom_start(json):
|
|||
config = int(json[config])
|
||||
# definir cred
|
||||
for i in range(5):
|
||||
cred = g._cred[i]
|
||||
g._mail = cred[0]
|
||||
g._password = cred[1]
|
||||
for j in ["unban", "tout", "pc", "mobile", "log_points"]:
|
||||
|
@ -869,7 +870,8 @@ def very_custom_start(json):
|
|||
display.stop()
|
||||
|
||||
if g.very_custom :
|
||||
very_custom_start(dict(g.very_custom))
|
||||
dict_data = json.loads(g.very_custom.replace("'", "\""))
|
||||
very_custom_start(dict_data)
|
||||
|
||||
else :
|
||||
if g.vnc_enabled or g.dev:
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import argparse
|
||||
import asyncio
|
||||
import json
|
||||
import configparser
|
||||
import pickle
|
||||
from csv import reader
|
||||
|
|
Loading…
Reference in New Issue