still looks like beta to me
This commit is contained in:
parent
ca7f49e6a6
commit
33eadaa405
|
@ -55,15 +55,15 @@ parser.add_argument(
|
|||
default="None"
|
||||
)
|
||||
|
||||
with open("./user_data/discord.json", "r") as inFile:
|
||||
with open("/app/MsRewards-Reborn/user_data/discord.json", "r") as inFile:
|
||||
discord = json.load(inFile)
|
||||
with open("./user_data/settings.json", "r") as inFile:
|
||||
with open("/app/MsRewards-Reborn/user_data/settings.json", "r") as inFile:
|
||||
settings = json.load(inFile)
|
||||
with open("./user_data/proxy.json", "r") as inFile:
|
||||
with open("/app/MsRewards-Reborn/user_data/proxy.json", "r") as inFile:
|
||||
proxy = json.load(inFile)
|
||||
with open("./user_data/configs.json", "r") as inFile:
|
||||
with open("/app/MsRewards-Reborn/user_data/configs.json", "r") as inFile:
|
||||
config = json.load(inFile)
|
||||
with open("./user_data/database.json", "r") as inFile:
|
||||
with open("/app/MsRewards-Reborn/user_data/database.json", "r") as inFile:
|
||||
database = json.load(inFile)
|
||||
|
||||
args = parser.parse_args()
|
||||
|
@ -85,7 +85,7 @@ g.start_time = time()
|
|||
|
||||
# path configurations
|
||||
g.mot_path = "/usr/share/dict/french"
|
||||
g.credential_path = "./user_data/login.csv"
|
||||
g.credential_path = "/app/MsRewards-Reborn/user_data/login.csv"
|
||||
|
||||
|
||||
discord_conf = config[args.config]["discord"]
|
||||
|
|
Loading…
Reference in New Issue