diff --git a/domain_check.py b/domain_check.py index f677bdf..9639844 100644 --- a/domain_check.py +++ b/domain_check.py @@ -1,7 +1,7 @@ from re import compile, sub def domain_ok(domain): - domains = ["jet", "jw", "404", "dash", "awesome"] + domains = ["jet", "jw", "404", "dash", "awesome", "mirror"] if domain.count(".") == 1: if domain.split(".")[1] in domains: diff --git a/site_creator.py b/site_creator.py index 26107c1..3fa5c55 100644 --- a/site_creator.py +++ b/site_creator.py @@ -18,7 +18,7 @@ op = input(">> ") if op == "1": from domain_check import * - print("\nДомены: .jet, .jw, .404, .dash, .awesome") + print("\nДомены: .jet, .jw, .404, .dash, .awesome, .mirror") domain = input("Домен сайта: ") if not domain_ok(domain): print("Неправильный формат или домен.")