Skip to content

Commit

Permalink
fix green text for real now
Browse files Browse the repository at this point in the history
  • Loading branch information
Official-Husko committed Jul 1, 2024
1 parent b510c2a commit 844e4fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/config_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def Writer():
}
with open("config.json", "w") as cfg_file:
json.dump(template, cfg_file, indent=6)
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"))
print(f'{info} {colored("New config file generated! Configure it and restart the program or wait 5 seconds and the program will continue with the default values.", "green")}')
print("")
sleep(5)
return template
Expand Down

0 comments on commit 844e4fe

Please sign in to comment.