Skip to content

Commit 6ff3246

Browse files
fix green text not green
1 parent 34afd4e commit 6ff3246

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

modules/config_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def Writer():
7474
}
7575
with open("config.json", "w") as cfg_file:
7676
json.dump(template, cfg_file, indent=6)
77-
print(colored(f"{info} New config file generated! Configure it and restart the program or wait 5 seconds and the program will continue with the default values."), "green")
77+
print(colored(f"{info} New config file generated! Configure it and restart the program or wait 5 seconds and the program will continue with the default values.", "green"))
7878
print("")
7979
sleep(5)
8080
return template

modules/pixeldrain.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,12 @@ def Uploader(file, proxy_list, user_agents, api_keys):
2626

2727
calc_size = Site_Data_CLSS.size_unit_calc(site, file_size)
2828

29+
print(api_keys)
30+
2931
api_key = api_keys.get("apiKey", False)
3032

33+
print(api_key)
34+
3135
if api_key in (False, ""):
3236
raise Exception("Missing API Credentials?")
3337

0 commit comments

Comments
 (0)